File tree Expand file tree Collapse file tree 5 files changed +468
-2
lines changed Expand file tree Collapse file tree 5 files changed +468
-2
lines changed Original file line number Diff line number Diff line change 44
44
<LangVersion >8.0</LangVersion >
45
45
</PropertyGroup >
46
46
47
+ <PropertyGroup Condition =" '$(TargetFramework)' == 'netcoreapp3.1'" >
48
+ <DefineConstants >$(DefineConstants);SUPPORTS_HASHCODE</DefineConstants >
49
+ </PropertyGroup >
50
+ <PropertyGroup Condition =" '$(TargetFramework)' == 'netcoreapp2.1'" >
51
+ <DefineConstants >$(DefineConstants);SUPPORTS_HASHCODE</DefineConstants >
52
+ </PropertyGroup >
53
+ <PropertyGroup Condition =" '$(TargetFramework)' == 'netstandard2.1'" >
54
+ <DefineConstants >$(DefineConstants);SUPPORTS_HASHCODE</DefineConstants >
55
+ </PropertyGroup >
56
+
47
57
</Project >
Original file line number Diff line number Diff line change 2
2
<Project >
3
3
4
4
<PropertyGroup >
5
+ <TargetFrameworks >netcoreapp3.1;netcoreapp2.1;net472;netstandard2.1;netstandard2.0;netstandard1.6</TargetFrameworks >
5
6
<MSBuildAllProjects >$(MSBuildAllProjects);$(MSBuildThisFileDirectory)..\Directory.Build.props</MSBuildAllProjects >
6
7
<SynercodingProjectCategory >src</SynercodingProjectCategory >
7
8
</PropertyGroup >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >netstandard2.1</TargetFramework >
5
4
<Nullable >enable</Nullable >
6
5
<LangVersion >8.0</LangVersion >
7
6
</PropertyGroup >
8
7
9
8
<Import Project =" $(MSBuildThisFileDirectory)\PackageDetails.props" />
10
9
10
+ <ItemGroup Condition =" '$(TargetFramework)' == 'net472' Or '$(TargetFramework)' == 'netstandard2.0' Or '$(TargetFramework)' == 'netstandard1.6'" >
11
+ <PackageReference Include =" System.Memory " Version =" 4.5.4" />
12
+ </ItemGroup >
13
+
14
+ <ItemGroup Condition =" '$(TargetFramework)' == 'netstandard1.6'" >
15
+ <PackageReference Include =" System.ValueTuple" Version =" 4.5.0" />
16
+ </ItemGroup >
17
+
11
18
</Project >
You can’t perform that action at this time.
0 commit comments