Skip to content

Commit bee9d3a

Browse files
author
Jason Zhai
committed
Merge branch 'release/7.0.3xx' into release/7.0.4xx
2 parents 132eb33 + 63f37a7 commit bee9d3a

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

eng/Versions.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
<MicrosoftExtensionsDependencyModelVersion>2.1.0-preview2-26306-03</MicrosoftExtensionsDependencyModelVersion>
2929
<MicrosoftApplicationInsightsPackageVersion>2.20.0</MicrosoftApplicationInsightsPackageVersion>
3030
<NETStandardLibraryNETFrameworkVersion>2.0.1-servicing-26011-01</NETStandardLibraryNETFrameworkVersion>
31+
<NETStandardLibraryVersion>2.0.3</NETStandardLibraryVersion>
3132
<NewtonsoftJsonPackageVersion>13.0.1</NewtonsoftJsonPackageVersion>
3233
<NewtonsoftJsonVersion>$(NewtonsoftJsonPackageVersion)</NewtonsoftJsonVersion>
3334
<StyleCopAnalyzersPackageVersion>1.2.0-beta.435</StyleCopAnalyzersPackageVersion>

src/BuiltInTools/dotnet-watch/dotnet-watch.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
Avoids picking up an old version via transitive dependency from Microsoft.Build or Microsoft.CodeAnalysis.Workspaces.MSBuild.
3434
-->
3535
<PackageReference Include="System.Text.Json" Version="$(SystemTextJsonVersion)" />
36-
36+
<!-- Lift dependency of NETStandard.Library.NETFramework to version produced in SBRP. -->
37+
<PackageReference Include="NETStandard.Library" Version="$(NETStandardLibraryVersion)" ExcludeAssets="All" />
3738
<Compile Include="$(RepoRoot)src\Common\PathUtilities.cs" LinkBase="Common" />
3839
</ItemGroup>
3940

src/Cli/dotnet/dotnet.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@
9696
<PackageReference Include="Microsoft.Deployment.DotNet.Releases" Version="$(MicrosoftDeploymentDotNetReleasesVersion)" />
9797
<PackageReference Include="System.ServiceProcess.ServiceController" Version="$(SystemServiceProcessServiceControllerVersion)" />
9898
<PackageReference Include="Microsoft.VisualStudio.Setup.Configuration.Interop" Version="$(MicrosoftVisualStudioSetupConfigurationInteropVersion)" PrivateAssets="All" ExcludeAssets="Runtime" Condition="'$(DotNetBuildFromSource)' != 'true'" />
99+
<!-- Lift dependency of NETStandard.Library.NETFramework to version produced in SBRP. -->
100+
<PackageReference Include="NETStandard.Library" Version="$(NETStandardLibraryVersion)" ExcludeAssets="All" />
99101
</ItemGroup>
100102
<ItemGroup Condition=" '$(IncludeAspNetCoreRuntime)' != 'false' ">
101103
<PackageReference Include="Microsoft.AspNetCore.DeveloperCertificates.XPlat" Version="$(MicrosoftAspNetCoreDeveloperCertificatesXPlatPackageVersion)" />

src/Tasks/Microsoft.NET.Build.Extensions.Tasks/Microsoft.NET.Build.Extensions.Tasks.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="$(MicrosoftBuildUtilitiesCoreVersion)" ExcludeAssets="Runtime" />
4949
<PackageReference Include="NETStandard.Library.NETFramework" Version="$(NETStandardLibraryNETFrameworkVersion)" ExcludeAssets="All" NoWarn="NU1701" />
5050
<!-- Lift dependency of NETStandard.Library.NETFramework to version produced in SBRP. -->
51-
<PackageReference Include="NETStandard.Library" Version="2.0.3" ExcludeAssets="All" />
51+
<PackageReference Include="NETStandard.Library" Version="$(NETStandardLibraryVersion)" ExcludeAssets="All" />
5252
</ItemGroup>
5353

5454
<ItemGroup>

0 commit comments

Comments
 (0)