Skip to content
This repository was archived by the owner on Apr 20, 2023. It is now read-only.

Commit 39f0822

Browse files
committed
Updating InteropServices.Runtime to 4.3.0 in CLI utils and adding an explicit reference to netstandard 2.0 to TestFramework.
1 parent 8d7009c commit 39f0822

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/Microsoft.DotNet.Cli.Utils/Microsoft.DotNet.Cli.Utils.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
<PackageReference Include="NuGet.ProjectModel" Version="$(NuGetProjectModelPackageVersion)" />
2525
<PackageReference Include="Microsoft.Build" Version="$(MicrosoftBuildPackageVersion)" />
2626
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="$(MicrosoftBuildUtilitiesCorePackageVersion)" />
27-
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.0.0" />
27+
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" />
2828
<PackageReference Include="XliffTasks" Version="$(XliffTasksPackageVersion)" PrivateAssets="All" />
29-
</ItemGroup>
29+
</ItemGroup>
3030

3131
<ItemGroup Condition=" '$(TargetFrameworkIdentifier)' == '.NETStandard' ">
3232
<PackageReference Include="NETStandard.Library" Version="2.0.0" />

src/Microsoft.DotNet.TestFramework/Microsoft.DotNet.TestFramework.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,14 @@
88
<AssemblyOriginatorKeyFile>../../tools/Key.snk</AssemblyOriginatorKeyFile>
99
<SignAssembly>true</SignAssembly>
1010
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
11-
<NetStandardImplicitPackageVersion>2.0.0</NetStandardImplicitPackageVersion>
1211
</PropertyGroup>
1312

1413
<ItemGroup>
1514
<ProjectReference Include="..\Microsoft.DotNet.Cli.Utils\Microsoft.DotNet.Cli.Utils.csproj" />
1615
</ItemGroup>
1716

17+
<ItemGroup>
18+
<PackageReference Include="NETStandard.Library" Version="2.0.0" />
19+
</ItemGroup>
20+
1821
</Project>

0 commit comments

Comments
 (0)