3
3
<PropertyGroup >
4
4
<SolutionDir Condition =" $(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'" >$(MSBuildProjectDirectory)\..\</SolutionDir >
5
5
6
+ <!-- Enable the restore command to run before builds -->
7
+ <RestorePackages Condition =" '$(RestorePackages)' == '' " >false</RestorePackages >
8
+
9
+ <!-- Property that enables building a package from a project -->
10
+ <BuildPackage Condition =" '$(BuildPackage)' == '' " >false</BuildPackage >
11
+
12
+ <!-- Determines if package restore consent is required to restore packages -->
13
+ <RequireRestoreConsent Condition =" '$(RequireRestoreConsent)' != 'false' " >true</RequireRestoreConsent >
14
+
15
+ <!-- Download NuGet.exe if it does not already exist -->
16
+ <DownloadNuGetExe Condition =" '$(DownloadNuGetExe)' == '' " >false</DownloadNuGetExe >
17
+ </PropertyGroup >
18
+
19
+ <ItemGroup Condition =" '$(PackageSources)' == '' " >
20
+ <!-- Package sources used to restore packages. By default, registered sources under %APPDATA%\NuGet\NuGet.Config will be used -->
21
+ <!-- The official NuGet package source (https://www.nuget.org/api/v2/) will be excluded if package sources are specified and it does not appear in the list -->
22
+ <!--
23
+ <PackageSource Include="https://www.nuget.org/api/v2/" />
24
+ <PackageSource Include="https://my-nuget-source/nuget/" />
25
+ -->
26
+ </ItemGroup >
27
+
28
+ <PropertyGroup Condition =" '$(OS)' == 'Windows_NT'" >
6
29
<!-- Windows specific commands -->
7
- <NuGetToolsPath Condition =" '$(OS)' == 'Windows_NT'" >$([System.IO.Path]::Combine($(SolutionDir), ".nuget"))</NuGetToolsPath >
8
- <PackagesConfig Condition =" '$(OS)' == 'Windows_NT'" >$([System.IO.Path]::Combine($(ProjectDir), "packages.config"))</PackagesConfig >
9
- <PackagesDir Condition =" '$(OS)' == 'Windows_NT'" >$([System.IO.Path]::Combine($(SolutionDir), "packages"))</PackagesDir >
30
+ <NuGetToolsPath >$([System.IO.Path]::Combine($(SolutionDir), ".nuget"))</NuGetToolsPath >
31
+ </PropertyGroup >
10
32
33
+ <PropertyGroup Condition =" '$(OS)' != 'Windows_NT'" >
11
34
<!-- We need to launch nuget.exe with the mono command if we're not on windows -->
12
- <NuGetToolsPath Condition =" '$(OS)' != 'Windows_NT'" >$(SolutionDir).nuget</NuGetToolsPath >
13
- <PackagesConfig Condition =" '$(OS)' != 'Windows_NT' " >packages.config</PackagesConfig >
14
- <PackagesDir Condition =" '$(OS)' != 'Windows_NT'" >$(SolutionDir)packages</PackagesDir >
15
-
35
+ <NuGetToolsPath >$(SolutionDir).nuget</NuGetToolsPath >
36
+ </PropertyGroup >
37
+
38
+ <PropertyGroup >
39
+ <PackagesProjectConfig Condition =" '$(OS)' == 'Windows_NT'" >$(MSBuildProjectDirectory)\packages.$(MSBuildProjectName.Replace(' ', '_')).config</PackagesProjectConfig >
40
+ <PackagesProjectConfig Condition =" '$(OS)' != 'Windows_NT'" >$(MSBuildProjectDirectory)\packages.$(MSBuildProjectName).config</PackagesProjectConfig >
41
+ </PropertyGroup >
42
+
43
+ <PropertyGroup >
44
+ <PackagesConfig Condition =" Exists('$(MSBuildProjectDirectory)\packages.config')" >$(MSBuildProjectDirectory)\packages.config</PackagesConfig >
45
+ <PackagesConfig Condition =" Exists('$(PackagesProjectConfig)')" >$(PackagesProjectConfig)</PackagesConfig >
46
+ </PropertyGroup >
47
+
48
+ <PropertyGroup >
16
49
<!-- NuGet command -->
17
- <NuGetExePath >$(NuGetToolsPath)\nuget.exe</NuGetExePath >
50
+ <NuGetExePath Condition =" '$(NuGetExePath)' == '' " >$(NuGetToolsPath)\NuGet.exe</NuGetExePath >
51
+ <PackageSources Condition =" $(PackageSources) == '' " >@(PackageSource)</PackageSources >
52
+
18
53
<NuGetCommand Condition =" '$(OS)' == 'Windows_NT'" >"$(NuGetExePath)"</NuGetCommand >
19
- <NuGetCommand Condition =" '$(OS)' != 'Windows_NT' " >mono --runtime=v4.0.30319 $(NuGetExePath)</NuGetCommand >
54
+ <NuGetCommand Condition =" '$(OS)' != 'Windows_NT' " >mono --runtime=v4.0.30319 " $(NuGetExePath)" </NuGetCommand >
20
55
21
56
<PackageOutputDir Condition =" $(PackageOutputDir) == ''" >$(TargetDir.Trim('\\'))</PackageOutputDir >
22
57
23
- <!-- Package sources used to restore packages. By default will used the registered sources under %APPDATA%\NuGet\NuGet.Config -->
24
- <PackageSources >""</PackageSources >
25
-
26
- <!-- Enable the restore command to run before builds -->
27
- <RestorePackages Condition =" $(RestorePackages) == ''" >false</RestorePackages >
58
+ <RequireConsentSwitch Condition =" $(RequireRestoreConsent) == 'true' " >-RequireConsent</RequireConsentSwitch >
59
+ <NonInteractiveSwitch Condition =" '$(VisualStudioVersion)' != '' AND '$(OS)' == 'Windows_NT' " >-NonInteractive</NonInteractiveSwitch >
28
60
29
- <!-- Property that enables building a package from a project -- >
30
- <BuildPackage Condition =" $(BuildPackage) == '' " >false</ BuildPackage >
61
+ <PaddedSolutionDir Condition = " '$(OS)' == 'Windows_NT' " >"$(SolutionDir) "</ PaddedSolutionDir >
62
+ <PaddedSolutionDir Condition =" '$(OS)' != 'Windows_NT' " >"$(SolutionDir)"</ PaddedSolutionDir >
31
63
32
64
<!-- Commands -->
33
- <RestoreCommand >$(NuGetCommand) install "$(PackagesConfig)" -source $(PackageSources) -o "$(PackagesDir)" </RestoreCommand >
34
- <BuildCommand >$(NuGetCommand) pack "$(ProjectPath)" -p Configuration=$(Configuration) -o "$(PackageOutputDir)" -symbols</BuildCommand >
65
+ <RestoreCommand >$(NuGetCommand) install "$(PackagesConfig)" -source " $(PackageSources)" $(NonInteractiveSwitch) $(RequireConsentSwitch) -solutionDir $(PaddedSolutionDir) </RestoreCommand >
66
+ <BuildCommand >$(NuGetCommand) pack "$(ProjectPath)" -Properties " Configuration=$(Configuration);Platform=$(Platform)" $(NonInteractiveSwitch) -OutputDirectory "$(PackageOutputDir)" -symbols</BuildCommand >
35
67
36
- <!-- Make the build depend on restore packages -->
68
+ <!-- We need to ensure packages are restored prior to assembly resolve -->
37
69
<BuildDependsOn Condition =" $(RestorePackages) == 'true'" >
38
70
RestorePackages;
39
71
$(BuildDependsOn);
48
80
49
81
<Target Name =" CheckPrerequisites" >
50
82
<!-- Raise an error if we're unable to locate nuget.exe -->
51
- <Error Condition =" !Exists('$(NuGetExePath)')" Text =" Unable to locate '$(NuGetExePath)'" />
83
+ <Error Condition =" '$(DownloadNuGetExe)' != 'true' AND !Exists('$(NuGetExePath)')" Text =" Unable to locate '$(NuGetExePath)'" />
84
+ <!--
85
+ Take advantage of MsBuild's build dependency tracking to make sure that we only ever download nuget.exe once.
86
+ This effectively acts as a lock that makes sure that the download operation will only happen once and all
87
+ parallel builds will have to wait for it to complete.
88
+ -->
89
+ <MsBuild Targets =" _DownloadNuGet" Projects =" $(MSBuildThisFileFullPath)" Properties =" Configuration=NOT_IMPORTANT;DownloadNuGetExe=$(DownloadNuGetExe)" />
52
90
</Target >
53
91
54
- <Target Name =" RestorePackages" DependsOnTargets =" CheckPrerequisites" >
92
+ <Target Name =" _DownloadNuGet" >
93
+ <DownloadNuGet OutputFilename =" $(NuGetExePath)" Condition =" '$(DownloadNuGetExe)' == 'true' AND !Exists('$(NuGetExePath)')" />
94
+ </Target >
95
+
96
+ <Target Name =" RestorePackages" DependsOnTargets =" CheckPrerequisites" >
55
97
<Exec Command =" $(RestoreCommand)"
56
98
Condition =" '$(OS)' != 'Windows_NT' And Exists('$(PackagesConfig)')" />
57
-
99
+
58
100
<Exec Command =" $(RestoreCommand)"
59
101
LogStandardErrorAsError =" true"
60
102
Condition =" '$(OS)' == 'Windows_NT' And Exists('$(PackagesConfig)')" />
61
103
</Target >
62
104
63
105
<Target Name =" BuildPackage" DependsOnTargets =" CheckPrerequisites" >
64
- <Exec Command =" $(BuildCommand)"
106
+ <Exec Command =" $(BuildCommand)"
65
107
Condition =" '$(OS)' != 'Windows_NT' " />
66
-
108
+
67
109
<Exec Command =" $(BuildCommand)"
68
110
LogStandardErrorAsError =" true"
69
111
Condition =" '$(OS)' == 'Windows_NT' " />
70
112
</Target >
71
- </Project >
113
+
114
+ <UsingTask TaskName =" DownloadNuGet" TaskFactory =" CodeTaskFactory" AssemblyFile =" $(MSBuildToolsPath)\Microsoft.Build.Tasks.v4.0.dll" >
115
+ <ParameterGroup >
116
+ <OutputFilename ParameterType =" System.String" Required =" true" />
117
+ </ParameterGroup >
118
+ <Task >
119
+ <Reference Include =" System.Core" />
120
+ <Using Namespace =" System" />
121
+ <Using Namespace =" System.IO" />
122
+ <Using Namespace =" System.Net" />
123
+ <Using Namespace =" Microsoft.Build.Framework" />
124
+ <Using Namespace =" Microsoft.Build.Utilities" />
125
+ <Code Type =" Fragment" Language =" cs" >
126
+ <![CDATA[
127
+ try {
128
+ OutputFilename = Path.GetFullPath(OutputFilename);
129
+
130
+ Log.LogMessage("Downloading latest version of NuGet.exe...");
131
+ WebClient webClient = new WebClient();
132
+ webClient.DownloadFile("https://www.nuget.org/nuget.exe", OutputFilename);
133
+
134
+ return true;
135
+ }
136
+ catch (Exception ex) {
137
+ Log.LogErrorFromException(ex);
138
+ return false;
139
+ }
140
+ ]]>
141
+ </Code >
142
+ </Task >
143
+ </UsingTask >
144
+ </Project >
0 commit comments