blob: f1adf75e2f660f1b6dc6216989efe0643afb1340 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Custom task to download files -->
<!-- Nuget executable -->
<PropertyGroup>
<NugetExe>$(MSBuildThisFileDirectory)NuGet-4.9.2.exe</NugetExe>
<NugetURL>https://dist.nuget.org/win-x86-commandline/v4.9.2/nuget.exe</NugetURL>
</PropertyGroup>
<!-- Download nuget.exe if not present -->
<Target Name="GetNuget" Condition="!Exists('$(NugetExe)')">
<Exec Command="powershell -ExecutionPolicy ByPass -Command "(New-Object Net.WebClient).DownloadFile('$(NugetURL)', '$(NugetExe)')""/>
</Target>
</Project>
|