|
17 | 17 | <PaketExeImage Condition=" '$(PaketBootstrapperStyle)' == 'proj' ">native</PaketExeImage>
|
18 | 18 | <MonoPath Condition="'$(MonoPath)' == '' And Exists('/Library/Frameworks/Mono.framework/Commands/mono')">/Library/Frameworks/Mono.framework/Commands/mono</MonoPath>
|
19 | 19 | <MonoPath Condition="'$(MonoPath)' == ''">mono</MonoPath>
|
20 |
| - <!-- Paket command --> |
21 |
| - <PaketExePath Condition=" '$(PaketExePath)' == '' AND Exists('$(PaketToolsPath)paket')">$(PaketToolsPath)paket</PaketExePath> |
22 |
| - <PaketExePath Condition=" '$(PaketExePath)' == '' AND Exists('$(PaketRootPath)paket.exe')">$(PaketRootPath)paket.exe</PaketExePath> |
23 | 20 |
|
24 |
| - <PaketExePath Condition=" '$(PaketExePath)' == '' AND '$(OS)' == 'Windows_NT' ">$(PaketToolsPath)paket.exe</PaketExePath> |
25 |
| - <PaketExePath Condition=" '$(PaketExePath)' == '' AND '$(OS)' != 'Windows_NT' AND '$(PaketExeImage)' == 'assembly' ">$(PaketToolsPath)paket.exe</PaketExePath> |
26 |
| - <PaketExePath Condition=" '$(PaketExePath)' == '' AND '$(OS)' != 'Windows_NT' AND '$(PaketExeImage)' == 'native' ">$(PaketToolsPath)paket</PaketExePath> |
| 21 | + <!-- PaketBootStrapper --> |
| 22 | + <PaketBootStrapperExePath Condition=" '$(PaketBootStrapperExePath)' == '' AND Exists('$(PaketRootPath)paket.bootstrapper.exe')">$(PaketRootPath)paket.bootstrapper.exe</PaketBootStrapperExePath> |
| 23 | + <PaketBootStrapperExePath Condition=" '$(PaketBootStrapperExePath)' == '' ">$(PaketToolsPath)paket.bootstrapper.exe</PaketBootStrapperExePath> |
| 24 | + <PaketBootStrapperExeDir Condition=" Exists('$(PaketBootStrapperExePath)') " >$([System.IO.Path]::GetDirectoryName("$(PaketBootStrapperExePath)"))\</PaketBootStrapperExeDir> |
| 25 | + |
| 26 | + <!-- Paket --> |
| 27 | + |
| 28 | + <!-- windows, root => tool => proj style => bootstrapper => global --> |
| 29 | + <PaketExePath Condition=" '$(PaketExePath)' == '' AND '$(OS)' == 'Windows_NT' AND Exists('$(PaketRootPath)paket.exe') ">$(PaketRootPath)paket.exe</PaketExePath> |
| 30 | + <PaketExePath Condition=" '$(PaketExePath)' == '' AND '$(OS)' == 'Windows_NT' AND Exists('$(PaketToolsPath)paket.exe') ">$(PaketToolsPath)paket.exe</PaketExePath> |
| 31 | + <PaketExePath Condition=" '$(PaketExePath)' == '' AND '$(OS)' == 'Windows_NT' AND '$(PaketBootstrapperStyle)' == 'proj' ">$(PaketToolsPath)paket.exe</PaketExePath> |
| 32 | + <PaketExePath Condition=" '$(PaketExePath)' == '' AND '$(OS)' == 'Windows_NT' AND Exists('$(PaketBootStrapperExeDir)') ">$(_PaketBootStrapperExeDir)paket.exe</PaketExePath> |
| 33 | + <PaketExePath Condition=" '$(PaketExePath)' == '' AND '$(OS)' == 'Windows_NT' ">paket.exe</PaketExePath> |
| 34 | + |
| 35 | + <!-- no windows, try native paket as default, root => tool => proj style => mono paket => bootstrpper => global --> |
| 36 | + <PaketExePath Condition=" '$(PaketExePath)' == '' AND '$(OS)' != 'Windows_NT' AND Exists('$(PaketRootPath)paket') ">$(PaketRootPath)paket</PaketExePath> |
| 37 | + <PaketExePath Condition=" '$(PaketExePath)' == '' AND '$(OS)' != 'Windows_NT' AND Exists('$(PaketToolsPath)paket') ">$(PaketToolsPath)paket</PaketExePath> |
| 38 | + <PaketExePath Condition=" '$(PaketExePath)' == '' AND '$(OS)' != 'Windows_NT' AND '$(PaketBootstrapperStyle)' == 'proj' ">$(PaketToolsPath)paket</PaketExePath> |
| 39 | + |
| 40 | + <!-- no windows, try mono paket --> |
| 41 | + <PaketExePath Condition=" '$(PaketExePath)' == '' AND '$(OS)' != 'Windows_NT' AND Exists('$(PaketRootPath)paket.exe') ">$(PaketRootPath)paket.exe</PaketExePath> |
| 42 | + <PaketExePath Condition=" '$(PaketExePath)' == '' AND '$(OS)' != 'Windows_NT' AND Exists('$(PaketToolsPath)paket.exe') ">$(PaketToolsPath)paket.exe</PaketExePath> |
| 43 | + |
| 44 | + <!-- no windows, try bootstrapper --> |
| 45 | + <PaketExePath Condition=" '$(PaketExePath)' == '' AND '$(OS)' != 'Windows_NT' AND Exists('$(PaketBootStrapperExeDir)') ">$(PaketBootStrapperExeDir)paket.exe</PaketExePath> |
| 46 | + |
| 47 | + <!-- no windows, try global native paket --> |
| 48 | + <PaketExePath Condition=" '$(PaketExePath)' == '' AND '$(OS)' != 'Windows_NT' ">paket</PaketExePath> |
27 | 49 |
|
28 | 50 | <!-- Paket command -->
|
29 | 51 | <_PaketExeExtension>$([System.IO.Path]::GetExtension("$(PaketExePath)"))</_PaketExeExtension>
|
30 | 52 | <PaketCommand Condition=" '$(PaketCommand)' == '' AND '$(_PaketExeExtension)' == '.dll' ">dotnet "$(PaketExePath)"</PaketCommand>
|
31 |
| - <PaketCommand Condition=" '$(PaketCommand)' == '' AND '$(OS)' == 'Windows_NT'">"$(PaketExePath)"</PaketCommand> |
32 | 53 | <PaketCommand Condition=" '$(PaketCommand)' == '' AND '$(OS)' != 'Windows_NT' AND '$(_PaketExeExtension)' == '.exe' ">$(MonoPath) --runtime=v4.0.30319 "$(PaketExePath)"</PaketCommand>
|
33 |
| - <PaketCommand Condition=" '$(PaketCommand)' == '' AND '$(OS)' != 'Windows_NT'">"$(PaketExePath)"</PaketCommand> |
| 54 | + <PaketCommand Condition=" '$(PaketCommand)' == '' ">"$(PaketExePath)"</PaketCommand> |
| 55 | + |
34 | 56 |
|
35 |
| - <PaketBootStrapperExePath Condition=" '$(PaketBootStrapperExePath)' == '' AND Exists('$(PaketRootPath)paket.bootstrapper.exe')">$(PaketRootPath)paket.bootstrapper.exe</PaketBootStrapperExePath> |
36 |
| - <PaketBootStrapperExePath Condition=" '$(PaketBootStrapperExePath)' == '' ">$(PaketToolsPath)paket.bootstrapper.exe</PaketBootStrapperExePath> |
37 | 57 | <PaketBootStrapperCommand Condition=" '$(OS)' == 'Windows_NT'">"$(PaketBootStrapperExePath)"</PaketBootStrapperCommand>
|
38 | 58 | <PaketBootStrapperCommand Condition=" '$(OS)' != 'Windows_NT' ">$(MonoPath) --runtime=v4.0.30319 "$(PaketBootStrapperExePath)"</PaketBootStrapperCommand>
|
39 | 59 |
|
|
42 | 62 | <!-- see https://github.com/fsharp/fslang-design/blob/master/RFCs/FS-1032-fsharp-in-dotnet-sdk.md -->
|
43 | 63 | <DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
|
44 | 64 | <DisableImplicitSystemValueTupleReference>true</DisableImplicitSystemValueTupleReference>
|
| 65 | + |
| 66 | + <!-- Disable Paket restore under NCrunch build --> |
| 67 | + <PaketRestoreDisabled Condition="'$(NCrunch)' == '1'">True</PaketRestoreDisabled> |
| 68 | + |
| 69 | + <PaketIntermediateOutputPath Condition=" '$(PaketIntermediateOutputPath)' == '' ">$(BaseIntermediateOutputPath.TrimEnd('\').TrimEnd('\/'))</PaketIntermediateOutputPath> |
45 | 70 | </PropertyGroup>
|
46 | 71 |
|
47 | 72 | <Target Name="PaketBootstrapping" Condition="Exists('$(PaketToolsPath)paket.bootstrapper.proj')">
|
|
82 | 107 | <PaketRestoreRequired Condition=" '$(PaketRestoreLockFileHash)' == '' ">true</PaketRestoreRequired>
|
83 | 108 | </PropertyGroup>
|
84 | 109 |
|
85 |
| - <PropertyGroup Condition="'$(PaketPropsVersion)' != '5.174.2' "> |
| 110 | + <!-- |
| 111 | + This value should match the version in the props generated by paket |
| 112 | + If they differ, this means we need to do a restore in order to ensure correct dependencies |
| 113 | + --> |
| 114 | + <PropertyGroup Condition="'$(PaketPropsVersion)' != '5.185.3' "> |
86 | 115 | <PaketRestoreRequired>true</PaketRestoreRequired>
|
87 | 116 | </PropertyGroup>
|
88 | 117 |
|
89 | 118 | <!-- Do a global restore if required -->
|
90 | 119 | <Exec Command='$(PaketBootStrapperCommand)' Condition=" '$(PaketBootstrapperStyle)' == 'classic' AND Exists('$(PaketBootStrapperExePath)') AND !(Exists('$(PaketExePath)'))" ContinueOnError="false" />
|
91 |
| - <Exec Command='$(PaketCommand) restore' Condition=" '$(PaketRestoreRequired)' == 'true' " ContinueOnError="false" /> |
92 |
| - |
| 120 | + <Exec Command='$(PaketCommand) restore' Condition=" '$(PaketRestoreRequired)' == 'true' AND '$(PaketDisableGlobalRestore)' != 'true' " ContinueOnError="false" /> |
| 121 | + |
93 | 122 | <!-- Step 2 Detect project specific changes -->
|
94 | 123 | <ItemGroup>
|
95 | 124 | <MyTargetFrameworks Condition="'$(TargetFramework)' != '' " Include="$(TargetFramework)"></MyTargetFrameworks>
|
96 | 125 | <!-- Don't include all frameworks when msbuild explicitly asks for a single one -->
|
97 | 126 | <MyTargetFrameworks Condition="'$(TargetFrameworks)' != '' AND '$(TargetFramework)' == '' " Include="$(TargetFrameworks)"></MyTargetFrameworks>
|
98 |
| - <PaketResolvedFilePaths Include="@(MyTargetFrameworks -> '$(MSBuildProjectDirectory)\obj\$(MSBuildProjectFile).%(Identity).paket.resolved')"></PaketResolvedFilePaths> |
| 127 | + <PaketResolvedFilePaths Include="@(MyTargetFrameworks -> '$(PaketIntermediateOutputPath)\$(MSBuildProjectFile).%(Identity).paket.resolved')"></PaketResolvedFilePaths> |
99 | 128 | </ItemGroup>
|
100 | 129 | <Message Importance="low" Text="MyTargetFrameworks=@(MyTargetFrameworks) PaketResolvedFilePaths=@(PaketResolvedFilePaths)" />
|
101 | 130 | <PropertyGroup>
|
102 |
| - <PaketReferencesCachedFilePath>$(MSBuildProjectDirectory)\obj\$(MSBuildProjectFile).paket.references.cached</PaketReferencesCachedFilePath> |
| 131 | + <PaketReferencesCachedFilePath>$(PaketIntermediateOutputPath)\$(MSBuildProjectFile).paket.references.cached</PaketReferencesCachedFilePath> |
103 | 132 | <!-- MyProject.fsproj.paket.references has the highest precedence -->
|
104 | 133 | <PaketOriginalReferencesFilePath>$(MSBuildProjectFullPath).paket.references</PaketOriginalReferencesFilePath>
|
105 | 134 | <!-- MyProject.paket.references -->
|
|
134 | 163 |
|
135 | 164 | <!-- Step 3 Restore project specific stuff if required -->
|
136 | 165 | <Message Condition=" '$(PaketRestoreRequired)' == 'true' " Importance="low" Text="Detected a change ('$(PaketRestoreRequiredReason)') in the project file '$(MSBuildProjectFullPath)', calling paket restore" />
|
137 |
| - <Exec Command='$(PaketCommand) restore --project "$(MSBuildProjectFullPath)" --target-framework "$(TargetFrameworks)"' Condition=" '$(PaketRestoreRequired)' == 'true' AND '$(TargetFramework)' == '' " ContinueOnError="false" /> |
138 |
| - <Exec Command='$(PaketCommand) restore --project "$(MSBuildProjectFullPath)" --target-framework "$(TargetFramework)"' Condition=" '$(PaketRestoreRequired)' == 'true' AND '$(TargetFramework)' != '' " ContinueOnError="false" /> |
| 166 | + <Exec Command='$(PaketCommand) restore --project "$(MSBuildProjectFullPath)" --output-path "$(PaketIntermediateOutputPath)" --target-framework "$(TargetFrameworks)"' Condition=" '$(PaketRestoreRequired)' == 'true' AND '$(TargetFramework)' == '' " ContinueOnError="false" /> |
| 167 | + <Exec Command='$(PaketCommand) restore --project "$(MSBuildProjectFullPath)" --output-path "$(PaketIntermediateOutputPath)" --target-framework "$(TargetFramework)"' Condition=" '$(PaketRestoreRequired)' == 'true' AND '$(TargetFramework)' != '' " ContinueOnError="false" /> |
139 | 168 |
|
140 | 169 | <!-- This shouldn't actually happen, but just to be sure. -->
|
141 | 170 | <PropertyGroup>
|
|
163 | 192 | <ExcludeAssets Condition=" '%(PaketReferencesFileLinesInfo.Splits)' == '6' And %(PaketReferencesFileLinesInfo.CopyLocal) == 'false'">runtime</ExcludeAssets>
|
164 | 193 | <ExcludeAssets Condition=" '%(PaketReferencesFileLinesInfo.Splits)' != '6' And %(PaketReferencesFileLinesInfo.AllPrivateAssets) == 'exclude'">runtime</ExcludeAssets>
|
165 | 194 | <Publish Condition=" '$(PackAsTool)' == 'true' ">true</Publish>
|
| 195 | + <AllowExplicitVersion>true</AllowExplicitVersion> |
166 | 196 | </PackageReference>
|
167 | 197 | </ItemGroup>
|
168 | 198 |
|
169 | 199 | <PropertyGroup>
|
170 |
| - <PaketCliToolFilePath>$(MSBuildProjectDirectory)/obj/$(MSBuildProjectFile).paket.clitools</PaketCliToolFilePath> |
| 200 | + <PaketCliToolFilePath>$(PaketIntermediateOutputPath)/$(MSBuildProjectFile).paket.clitools</PaketCliToolFilePath> |
171 | 201 | </PropertyGroup>
|
172 | 202 |
|
173 | 203 | <ReadLinesFromFile File="$(PaketCliToolFilePath)" >
|
|
186 | 216 |
|
187 | 217 | <!-- Disabled for now until we know what to do with runtime deps - https://github.com/fsprojects/Paket/issues/2964
|
188 | 218 | <PropertyGroup>
|
189 |
| - <RestoreConfigFile>$(MSBuildProjectDirectory)/obj/$(MSBuildProjectFile).NuGet.Config</RestoreConfigFile> |
| 219 | + <RestoreConfigFile>$(PaketIntermediateOutputPath)/$(MSBuildProjectFile).NuGet.Config</RestoreConfigFile> |
190 | 220 | </PropertyGroup> -->
|
191 | 221 |
|
192 | 222 | </Target>
|
193 | 223 |
|
194 |
| - <Target Name="PaketDisableDirectPack" AfterTargets="_IntermediatePack" BeforeTargets="GenerateNuspec" Condition="('$(IsPackable)' == '' Or '$(IsPackable)' == 'true') And Exists('$(MSBuildProjectDirectory)/obj/$(MSBuildProjectFile).references')" > |
| 224 | + <Target Name="PaketDisableDirectPack" AfterTargets="_IntermediatePack" BeforeTargets="GenerateNuspec" Condition="('$(IsPackable)' == '' Or '$(IsPackable)' == 'true') And Exists('$(PaketIntermediateOutputPath)/$(MSBuildProjectFile).references')" > |
195 | 225 | <PropertyGroup>
|
196 | 226 | <ContinuePackingAfterGeneratingNuspec>false</ContinuePackingAfterGeneratingNuspec>
|
197 | 227 | <DetectedMSBuildVersion>$(MSBuildVersion)</DetectedMSBuildVersion>
|
198 | 228 | <DetectedMSBuildVersion Condition="$(MSBuildVersion) == ''">15.8.0</DetectedMSBuildVersion>
|
199 | 229 | </PropertyGroup>
|
200 | 230 | </Target>
|
201 | 231 |
|
202 |
| - <Target Name="PaketOverrideNuspec" AfterTargets="GenerateNuspec" Condition="('$(IsPackable)' == '' Or '$(IsPackable)' == 'true') And Exists('$(MSBuildProjectDirectory)/obj/$(MSBuildProjectFile).references')" > |
| 232 | + <Target Name="PaketOverrideNuspec" AfterTargets="GenerateNuspec" Condition="('$(IsPackable)' == '' Or '$(IsPackable)' == 'true') And Exists('$(PaketIntermediateOutputPath)/$(MSBuildProjectFile).references')" > |
203 | 233 | <ItemGroup>
|
204 |
| - <_NuspecFilesNewLocation Include="$(BaseIntermediateOutputPath)$(Configuration)\*.nuspec"/> |
| 234 | + <_NuspecFilesNewLocation Include="$(PaketIntermediateOutputPath)\$(Configuration)\*.nuspec"/> |
205 | 235 | <MSBuildMajorVersion Include="$(DetectedMSBuildVersion.Replace(`-`, `.`).Split(`.`)[0])" />
|
206 | 236 | <MSBuildMinorVersion Include="$(DetectedMSBuildVersion.Replace(`-`, `.`).Split(`.`)[1])" />
|
207 | 237 | </ItemGroup>
|
208 | 238 |
|
209 | 239 | <PropertyGroup>
|
210 | 240 | <PaketProjectFile>$(MSBuildProjectDirectory)/$(MSBuildProjectFile)</PaketProjectFile>
|
211 | 241 | <ContinuePackingAfterGeneratingNuspec>true</ContinuePackingAfterGeneratingNuspec>
|
| 242 | + <UseMSBuild16_0_Pack>false</UseMSBuild16_0_Pack> |
| 243 | + <UseMSBuild16_0_Pack Condition=" '@(MSBuildMajorVersion)' >= '16' ">true</UseMSBuild16_0_Pack> |
212 | 244 | <UseMSBuild15_9_Pack>false</UseMSBuild15_9_Pack>
|
213 |
| - <UseMSBuild15_9_Pack Condition=" '@(MSBuildMajorVersion)' > '15' OR ('@(MSBuildMajorVersion)' == '15' AND '@(MSBuildMinorVersion)' > '8') ">true</UseMSBuild15_9_Pack> |
| 245 | + <UseMSBuild15_9_Pack Condition=" '@(MSBuildMajorVersion)' == '15' AND '@(MSBuildMinorVersion)' > '8' ">true</UseMSBuild15_9_Pack> |
214 | 246 | <UseMSBuild15_8_Pack>false</UseMSBuild15_8_Pack>
|
215 |
| - <UseMSBuild15_8_Pack Condition=" '$(NuGetToolVersion)' != '4.0.0' AND (! $(UseMSBuild15_9_Pack)) ">true</UseMSBuild15_8_Pack> |
| 247 | + <UseMSBuild15_8_Pack Condition=" '$(NuGetToolVersion)' != '4.0.0' AND (! $(UseMSBuild15_9_Pack)) AND (! $(UseMSBuild16_0_Pack)) ">true</UseMSBuild15_8_Pack> |
216 | 248 | <UseNuGet4_Pack>false</UseNuGet4_Pack>
|
217 |
| - <UseNuGet4_Pack Condition=" (! $(UseMSBuild15_8_Pack)) AND (! $(UseMSBuild15_9_Pack)) ">true</UseNuGet4_Pack> |
218 |
| - <AdjustedNuspecOutputPath>$(BaseIntermediateOutputPath)$(Configuration)</AdjustedNuspecOutputPath> |
219 |
| - <AdjustedNuspecOutputPath Condition="@(_NuspecFilesNewLocation) == ''">$(BaseIntermediateOutputPath)</AdjustedNuspecOutputPath> |
| 249 | + <UseNuGet4_Pack Condition=" (! $(UseMSBuild15_8_Pack)) AND (! $(UseMSBuild15_9_Pack)) AND (! $(UseMSBuild16_0_Pack)) ">true</UseNuGet4_Pack> |
| 250 | + <AdjustedNuspecOutputPath>$(PaketIntermediateOutputPath)\$(Configuration)</AdjustedNuspecOutputPath> |
| 251 | + <AdjustedNuspecOutputPath Condition="@(_NuspecFilesNewLocation) == ''">$(PaketIntermediateOutputPath)</AdjustedNuspecOutputPath> |
220 | 252 | </PropertyGroup>
|
221 | 253 |
|
222 | 254 | <ItemGroup>
|
|
230 | 262 | </ConvertToAbsolutePath>
|
231 | 263 |
|
232 | 264 | <!-- Call Pack -->
|
| 265 | + <PackTask Condition="$(UseMSBuild16_0_Pack)" |
| 266 | + PackItem="$(PackProjectInputFile)" |
| 267 | + PackageFiles="@(_PackageFiles)" |
| 268 | + PackageFilesToExclude="@(_PackageFilesToExclude)" |
| 269 | + PackageVersion="$(PackageVersion)" |
| 270 | + PackageId="$(PackageId)" |
| 271 | + Title="$(Title)" |
| 272 | + Authors="$(Authors)" |
| 273 | + Description="$(Description)" |
| 274 | + Copyright="$(Copyright)" |
| 275 | + RequireLicenseAcceptance="$(PackageRequireLicenseAcceptance)" |
| 276 | + LicenseUrl="$(PackageLicenseUrl)" |
| 277 | + ProjectUrl="$(PackageProjectUrl)" |
| 278 | + IconUrl="$(PackageIconUrl)" |
| 279 | + ReleaseNotes="$(PackageReleaseNotes)" |
| 280 | + Tags="$(PackageTags)" |
| 281 | + DevelopmentDependency="$(DevelopmentDependency)" |
| 282 | + BuildOutputInPackage="@(_BuildOutputInPackage)" |
| 283 | + TargetPathsToSymbols="@(_TargetPathsToSymbols)" |
| 284 | + SymbolPackageFormat="symbols.nupkg" |
| 285 | + TargetFrameworks="@(_TargetFrameworks)" |
| 286 | + AssemblyName="$(AssemblyName)" |
| 287 | + PackageOutputPath="$(PackageOutputAbsolutePath)" |
| 288 | + IncludeSymbols="$(IncludeSymbols)" |
| 289 | + IncludeSource="$(IncludeSource)" |
| 290 | + PackageTypes="$(PackageType)" |
| 291 | + IsTool="$(IsTool)" |
| 292 | + RepositoryUrl="$(RepositoryUrl)" |
| 293 | + RepositoryType="$(RepositoryType)" |
| 294 | + SourceFiles="@(_SourceFiles->Distinct())" |
| 295 | + NoPackageAnalysis="$(NoPackageAnalysis)" |
| 296 | + MinClientVersion="$(MinClientVersion)" |
| 297 | + Serviceable="$(Serviceable)" |
| 298 | + FrameworkAssemblyReferences="@(_FrameworkAssemblyReferences)" |
| 299 | + ContinuePackingAfterGeneratingNuspec="$(ContinuePackingAfterGeneratingNuspec)" |
| 300 | + NuspecOutputPath="$(AdjustedNuspecOutputPath)" |
| 301 | + IncludeBuildOutput="$(IncludeBuildOutput)" |
| 302 | + BuildOutputFolders="$(BuildOutputTargetFolder)" |
| 303 | + ContentTargetFolders="$(ContentTargetFolders)" |
| 304 | + RestoreOutputPath="$(RestoreOutputAbsolutePath)" |
| 305 | + NuspecFile="$(NuspecFileAbsolutePath)" |
| 306 | + NuspecBasePath="$(NuspecBasePath)" |
| 307 | + NuspecProperties="$(NuspecProperties)" |
| 308 | + PackageLicenseFile="$(PackageLicenseFile)" |
| 309 | + PackageLicenseExpression="$(PackageLicenseExpression)" |
| 310 | + PackageLicenseExpressionVersion="$(PackageLicenseExpressionVersion)" /> |
| 311 | + |
233 | 312 | <PackTask Condition="$(UseMSBuild15_9_Pack)"
|
234 | 313 | PackItem="$(PackProjectInputFile)"
|
235 | 314 | PackageFiles="@(_PackageFiles)"
|
|
0 commit comments