File tree 3 files changed +9
-9
lines changed
ServiceStack.Redis.Benchmark
ServiceStack.Redis.Tests.Sentinel
3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<OutputType >Exe</OutputType >
5
- <TargetFrameworks >netcoreapp3.1 ;net472</TargetFrameworks >
5
+ <TargetFrameworks >net5.0 ;net472</TargetFrameworks >
6
6
<LangVersion >8</LangVersion >
7
7
</PropertyGroup >
8
8
<ItemGroup >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >netcoreapp2.1;net45 </TargetFrameworks >
4
+ <TargetFrameworks >net472;net5.0 </TargetFrameworks >
5
5
<DebugType >portable</DebugType >
6
6
<AssemblyName >ServiceStack.Redis.Tests.Sentinel</AssemblyName >
7
7
<OutputType >Library</OutputType >
27
27
<PackageReference Include =" ServiceStack" Version =" $(Version)" />
28
28
</ItemGroup >
29
29
30
- <PropertyGroup Condition =" '$(TargetFramework)' == 'net45 ' " >
30
+ <PropertyGroup Condition =" '$(TargetFramework)' == 'net472 ' " >
31
31
<DefineConstants >$(DefineConstants);NET45</DefineConstants >
32
32
</PropertyGroup >
33
33
34
- <ItemGroup Condition =" '$(TargetFramework)' == 'net45 ' " >
34
+ <ItemGroup Condition =" '$(TargetFramework)' == 'net472 ' " >
35
35
<Reference Include =" System.Configuration" />
36
36
<Reference Include =" System.Threading" />
37
37
<Reference Include =" System.Threading.Tasks" />
41
41
<Reference Include =" Microsoft.CSharp" />
42
42
</ItemGroup >
43
43
44
- <PropertyGroup Condition =" '$(TargetFramework)' == 'netcoreapp2.1 ' " >
44
+ <PropertyGroup Condition =" '$(TargetFramework)' == 'net5.0 ' " >
45
45
<DefineConstants >$(DefineConstants);NETCORE_SUPPORT;NETCORE</DefineConstants >
46
46
</PropertyGroup >
47
47
48
- <ItemGroup Condition =" '$(TargetFramework)' == 'netcoreapp2.1 ' " >
48
+ <ItemGroup Condition =" '$(TargetFramework)' == 'net5.0 ' " >
49
49
<PackageReference Include =" Microsoft.Extensions.Primitives" Version =" 2.1.1" />
50
50
</ItemGroup >
51
51
Original file line number Diff line number Diff line change 5
5
- net46 is .NET Framework without async
6
6
- net472 is .NET Framework with async
7
7
- netcoreapp2.1 is .NET Core with async, but without some features like memory/stream APIs
8
- - netcoreapp3.1 is .NET Core with all the bells and whistles
8
+ - net5.0 is .NET Core with all the bells and whistles
9
9
-->
10
- <TargetFrameworks >net46;net472;netcoreapp2.1;netcoreapp3.1 </TargetFrameworks >
10
+ <TargetFrameworks >net46;net472;netcoreapp2.1;net5.0 </TargetFrameworks >
11
11
<DebugType >portable</DebugType >
12
12
<AssemblyName >ServiceStack.Redis.Tests</AssemblyName >
13
13
<OutputType >Library</OutputType >
36
36
<Compile Remove =" **/*.Async.cs" />
37
37
<None Include =" **/*.Async.cs" />
38
38
</ItemGroup >
39
- <PropertyGroup Condition =" '$(TargetFramework)' == 'netcoreapp2.1' or '$(TargetFramework)' == 'netcoreapp3.1 '" >
39
+ <PropertyGroup Condition =" '$(TargetFramework)' == 'netcoreapp2.1' or '$(TargetFramework)' == 'net5.0 '" >
40
40
<DefineConstants >$(DefineConstants);NETCORE</DefineConstants >
41
41
</PropertyGroup >
42
42
<ItemGroup Condition =" '$(TargetFramework)' == 'net46' " >
You can’t perform that action at this time.
0 commit comments