blob: 1f923412da6e21e3db725ef6262da9d9ba882e4f (
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.exe</NugetExe>
<NugetURL>https://dist.nuget.org/win-x86-commandline/v3.4.4/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>
|