Update the nuget and msbuild ref versions for the installer tasks (#19009)
This commit is contained in:
commit
3ab7923320
2 changed files with 9 additions and 4 deletions
|
@ -107,7 +107,12 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<!-- Dependencies from https://github.com/NuGet/NuGet.Client -->
|
<!-- Dependencies from https://github.com/NuGet/NuGet.Client -->
|
||||||
<NuGetVersioningPackageVersion>5.8.0</NuGetVersioningPackageVersion>
|
<NuGetBuildTasksPackageVersion>6.4.3-rc.1</NuGetBuildTasksPackageVersion>
|
||||||
|
<NuGetVersioningPackageVersion>$(NuGetBuildTasksPackageVersion)</NuGetVersioningPackageVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<!-- Dependencies from https://github.com/dotnet/msbuild -->
|
||||||
|
<MicrosoftBuildPackageVersion>17.4.8</MicrosoftBuildPackageVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<!-- Automated versions for asp.net templates -->
|
<!-- Automated versions for asp.net templates -->
|
||||||
|
|
|
@ -9,12 +9,12 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Build" Version="15.7.179" />
|
<PackageReference Include="Microsoft.Build" Version="$(MicrosoftBuildPackageVersion)" />
|
||||||
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="15.7.179" />
|
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="$(MicrosoftBuildPackageVersion)" />
|
||||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
||||||
<PackageReference Include="NuGet.Versioning" Version="$(NuGetVersioningPackageVersion)" />
|
<PackageReference Include="NuGet.Versioning" Version="$(NuGetVersioningPackageVersion)" />
|
||||||
<PackageReference Include="NuGet.Packaging" Version="$(NuGetVersioningPackageVersion)" />
|
<PackageReference Include="NuGet.Packaging" Version="$(NuGetVersioningPackageVersion)" />
|
||||||
<PackageReference Include="System.Reflection.Metadata" Version="1.4.2" />
|
<PackageReference Include="System.Reflection.Metadata" Version="7.0.2" />
|
||||||
<PackageReference Include="WindowsAzure.Storage" Version="9.3.3" Condition="'$(DotNetBuildFromSource)' != 'true'" />
|
<PackageReference Include="WindowsAzure.Storage" Version="9.3.3" Condition="'$(DotNetBuildFromSource)' != 'true'" />
|
||||||
<PackageReference Include="System.Net.Http" Version="4.3.4" />
|
<PackageReference Include="System.Net.Http" Version="4.3.4" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
Loading…
Reference in a new issue