forked from sillsdev/liblcm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbefore.LCM.sln.targets
66 lines (58 loc) · 3.13 KB
/
before.LCM.sln.targets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="14.0">
<PropertyGroup>
<NuGetExeUrl>https://dist.nuget.org/win-x86-commandline/v3.4.4/nuget.exe</NuGetExeUrl>
<NuGetPath>$(MSBuildThisFileDirectory).nuget</NuGetPath>
<NuGetExe>$(NuGetPath)/nuget.exe</NuGetExe>
<NuGetCommand Condition=" '$(OS)' == 'Windows_NT'">"$(NuGetExe)"</NuGetCommand>
<NuGetCommand Condition=" '$(OS)' != 'Windows_NT' ">mono --runtime=v4.0.30319 $(NuGetExe)</NuGetCommand>
</PropertyGroup>
<Target Name="RestorePackages" BeforeTargets="Rebuild;Build" DependsOnTargets="GetNuGet">
<Exec Command="$(NuGetCommand) Restore "$(SolutionPath)"" Condition="'$(SolutionPath)' != ''" />
<Exec Command="$(NuGetCommand) Restore "%(Solution.Identity)"" Condition="'%(Solution.Identity)' != ''" />
</Target>
<PropertyGroup Condition="'$(OS)' == 'Windows_NT'">
<CodeTaskAssembly Condition="'$(MSBuildAssemblyVersion)' == ''">$(MSBuildToolsPath)\Microsoft.Build.Tasks.v4.0.dll</CodeTaskAssembly>
<!-- In VS2013, the assembly contains the VS version. -->
<CodeTaskAssembly Condition="'$(MSBuildAssemblyVersion)' == '12.0'">$(MSBuildToolsPath)\Microsoft.Build.Tasks.v12.0.dll</CodeTaskAssembly>
<!-- In VS2015+, the assembly was renamed, hopefully this will be the last condition! -->
<CodeTaskAssembly Condition="'$(MSBuildAssemblyVersion)' != '' and '$(MSBuildAssemblyVersion)' >= '14.0'">$(MSBuildToolsPath)\Microsoft.Build.Tasks.Core.dll</CodeTaskAssembly>
</PropertyGroup>
<Target Name="GetNuGet" Condition="!Exists('$(NuGetExe)')">
<MakeDir Directories="$(NuGetPath)" Condition="!Exists('$(NuGetPath)')" />
<DownloadNuGet TargetPath="$(NuGetExe)" Condition="'$(OS)' == 'Windows_NT'" />
<Exec Command="wget $(NuGetExeUrl) || curl -O -L $(NuGetExeUrl)"
WorkingDirectory="$(NuGetPath)"
Condition="'$(OS)' != 'Windows_NT'" />
</Target>
<UsingTask TaskName="DownloadNuGet" TaskFactory="CodeTaskFactory" AssemblyFile="$(CodeTaskAssembly)" Condition="'$(OS)' == 'Windows_NT'">
<ParameterGroup>
<TargetPath ParameterType="System.String" Required="true" />
</ParameterGroup>
<Task>
<Reference Include="System.Core" />
<Using Namespace="System" />
<Using Namespace="System.IO" />
<Using Namespace="System.Net" />
<Using Namespace="Microsoft.Build.Framework" />
<Using Namespace="Microsoft.Build.Utilities" />
<Code Type="Fragment" Language="cs">
<![CDATA[
try {
TargetPath = Path.GetFullPath(TargetPath);
if (!Directory.Exists(Path.GetDirectoryName(TargetPath)))
Directory.CreateDirectory(Path.GetDirectoryName(TargetPath));
Log.LogMessage("Downloading latest version of NuGet.exe...");
WebClient webClient = new WebClient();
webClient.DownloadFile("$(NuGetExeUrl)", TargetPath);
return true;
}
catch (Exception ex) {
Log.LogErrorFromException(ex);
return false;
}
]]>
</Code>
</Task>
</UsingTask>
</Project>