Address some of the PR comments
This commit is contained in:
parent
1d9a2e5da1
commit
7b62dd1267
2 changed files with 14 additions and 16 deletions
|
@ -3,7 +3,6 @@
|
||||||
<DotnetHostBaseName>dotnet$(ExeExtension)</DotnetHostBaseName>
|
<DotnetHostBaseName>dotnet$(ExeExtension)</DotnetHostBaseName>
|
||||||
<DotnetHostFxrBaseName>$(DynamicLibPrefix)hostfxr$(DynamicLibExtension)</DotnetHostFxrBaseName>
|
<DotnetHostFxrBaseName>$(DynamicLibPrefix)hostfxr$(DynamicLibExtension)</DotnetHostFxrBaseName>
|
||||||
<HostPolicyBaseName>$(DynamicLibPrefix)hostpolicy$(DynamicLibExtension)</HostPolicyBaseName>
|
<HostPolicyBaseName>$(DynamicLibPrefix)hostpolicy$(DynamicLibExtension)</HostPolicyBaseName>
|
||||||
<ArchiverDll>$(ToolsOutputDirectory)/Archiver.dll</ArchiverDll>
|
|
||||||
<FinalArchive>$(Stage2Directory)/sdk/$(SdkVersion)/nuGetPackagesArchive.lzma</FinalArchive>
|
<FinalArchive>$(Stage2Directory)/sdk/$(SdkVersion)/nuGetPackagesArchive.lzma</FinalArchive>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -1,5 +1,19 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<UploadNuGetPackagesArchiveToAzure>false</UploadNuGetPackagesArchiveToAzure>
|
||||||
|
<ArchiverDll>$(ToolsOutputDirectory)/Archiver.dll</ArchiverDll>
|
||||||
|
<NuGetConfigContent>
|
||||||
|
<configuration>
|
||||||
|
<packageSources>
|
||||||
|
<add key="configurable.source" value="%CLI_LZMA_PACKAGE_SOURCE%" />
|
||||||
|
</packageSources>
|
||||||
|
</configuration>
|
||||||
|
</NuGetConfigContent>
|
||||||
|
<LZMANuGetConfigFilePath>$(NuGetPackagesArchiveProject)/Nuget.config</LZMANuGetConfigFilePath>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
<Target Name="GetNuGetPackagesArchive"
|
<Target Name="GetNuGetPackagesArchive"
|
||||||
DependsOnTargets="SetupNuGetPackagesArchiveInputsOutputs;
|
DependsOnTargets="SetupNuGetPackagesArchiveInputsOutputs;
|
||||||
DownloadNuGetPackagesArchive;
|
DownloadNuGetPackagesArchive;
|
||||||
|
@ -44,10 +58,6 @@
|
||||||
ContinueOnError="WarnAndContinue" />
|
ContinueOnError="WarnAndContinue" />
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<UploadNuGetPackagesArchiveToAzure>false</UploadNuGetPackagesArchiveToAzure>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<Target Name="GenerateNuGetPackagesArchive"
|
<Target Name="GenerateNuGetPackagesArchive"
|
||||||
DependsOnTargets="SetupNuGetPackagesArchiveInputsOutputs"
|
DependsOnTargets="SetupNuGetPackagesArchiveInputsOutputs"
|
||||||
Inputs="$(IntermediateArchive)"
|
Inputs="$(IntermediateArchive)"
|
||||||
|
@ -67,17 +77,6 @@
|
||||||
<NuGetPackagesArchiveDirectory Include="$(NuGetPackagesArchiveFolder)" />
|
<NuGetPackagesArchiveDirectory Include="$(NuGetPackagesArchiveFolder)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<NuGetConfigContent>
|
|
||||||
<configuration>
|
|
||||||
<packageSources>
|
|
||||||
<add key="configurable.source" value="%CLI_LZMA_PACKAGE_SOURCE%" />
|
|
||||||
</packageSources>
|
|
||||||
</configuration>
|
|
||||||
</NuGetConfigContent>
|
|
||||||
<LZMANuGetConfigFilePath>$(NuGetPackagesArchiveProject)/Nuget.config</LZMANuGetConfigFilePath>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<Delete Files="@(FilesToClean)" />
|
<Delete Files="@(FilesToClean)" />
|
||||||
<RemoveDir Directories="@(NuGetPackagesArchiveDirectory)" />
|
<RemoveDir Directories="@(NuGetPackagesArchiveDirectory)" />
|
||||||
<MakeDir Directories="@(NuGetPackagesArchiveDirectory)"/>
|
<MakeDir Directories="@(NuGetPackagesArchiveDirectory)"/>
|
||||||
|
|
Loading…
Reference in a new issue