File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed
UnitTests/UnitTests.NetCore Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFrameworks >netstandard2.0;netstandard2.1</TargetFrameworks >
4+ <TargetFrameworks >netstandard2.0;netstandard2.1;net5.0 </TargetFrameworks >
55 <LangVersion >9.0</LangVersion >
66 <Nullable >enable</Nullable >
77 <AllowUnsafeBlocks >true</AllowUnsafeBlocks >
2020 <!-- .NET Standard 2.0 doesn't have the Span<T> and IAsyncEnumerable<T> types -->
2121 <ItemGroup Condition =" '$(TargetFramework)' == 'netstandard2.0' " >
2222 <PackageReference Include =" Microsoft.Bcl.AsyncInterfaces" Version =" 5.0.0" />
23+ <PackageReference Include =" System.ComponentModel.Annotations" Version =" 5.0.0" />
2324 <PackageReference Include =" System.Memory" Version =" 4.5.4" />
2425 </ItemGroup >
2526
2627 <!-- .NET Standard 2.1 doesn't have the Unsafe type -->
2728 <ItemGroup Condition =" '$(TargetFramework)' == 'netstandard2.1' " >
28- <PackageReference Include =" System.Runtime.CompilerServices.Unsafe" Version =" 5.0.0" />
29- </ItemGroup >
30-
31- <ItemGroup >
32-
33- <!-- Needed to support the INotifyDataErrorInfo interface-->
3429 <PackageReference Include =" System.ComponentModel.Annotations" Version =" 5.0.0" />
30+ <PackageReference Include =" System.Runtime.CompilerServices.Unsafe" Version =" 5.0.0" />
3531 </ItemGroup >
3632
3733</Project >
Original file line number Diff line number Diff line change 1616
1717 <!-- Workaround for the .NET Core 2.1 binary not resolving the Unsafe assembly properly -->
1818 <ItemGroup Condition =" '$(TargetFramework)' == 'netcoreapp2.1' " >
19- <PackageReference Include =" System.Runtime.CompilerServices.Unsafe" Version =" 4.7.1 " />
19+ <PackageReference Include =" System.Runtime.CompilerServices.Unsafe" Version =" 5.0.0 " />
2020 </ItemGroup >
2121
2222 <ItemGroup >
You can’t perform that action at this time.
0 commit comments