Browse Source

Merge pull request #9847 from SimonCropp/avoid-nuget-refs-on-net6

avoid nuget refs on net6
pull/9853/head
Max Katz 3 years ago
committed by GitHub
parent
commit
088f8de5e1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      build/Base.props
  2. 2
      build/System.Memory.props

2
build/Base.props

@ -1,5 +1,5 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' != 'net6'">
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.6.0" />
</ItemGroup>

2
build/System.Memory.props

@ -1,5 +1,5 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' != 'net6'">
<PackageReference Include="System.Memory" Version="4.5.3" />
</ItemGroup>
</Project>

Loading…
Cancel
Save