File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed
CacheTower.Serializers.SystemTextJson Expand file tree Collapse file tree 2 files changed +11
-5
lines changed 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.0</ TargetFramework >
4
+ <TargetFrameworks >netstandard2.0;net6.0</ TargetFrameworks >
5
5
<Title >System.Text.Json Serializer for Cache Tower</Title >
6
6
<Description >System.Text.Json cache serialization for Cache Tower</Description >
7
7
<PackageTags >system.text.json;json;$(PackageBaseTags)</PackageTags >
8
8
<Authors >James Turner</Authors >
9
9
</PropertyGroup >
10
10
11
- <ItemGroup >
11
+ <ItemGroup Condition = " '$(TargetFramework)' == 'netstandard6.0' " >
12
12
<PackageReference Include =" System.Text.Json" Version =" 6.0.8" />
13
13
</ItemGroup >
14
14
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >netstandard2.0;netstandard2.1</TargetFrameworks >
4
+ <TargetFrameworks >netstandard2.0;netstandard2.1;net6.0 </TargetFrameworks >
5
5
<Title >Cache Tower</Title >
6
6
<Description >A multi-layered caching system for .NET</Description >
7
7
<PackageTags >inmemory,$(PackageBaseTags)</PackageTags >
13
13
<PackageReference Include =" Microsoft.Extensions.DependencyInjection.Abstractions" Version =" 6.0.0" />
14
14
<PackageReference Include =" Microsoft.Extensions.Logging.Abstractions" Version =" 6.0.4" />
15
15
<PackageReference Include =" Nito.AsyncEx" Version =" 5.1.2" />
16
- <PackageReference Condition =" '$(TargetFramework)' == 'netstandard2.0'" Include =" Microsoft.Bcl.AsyncInterfaces" Version =" 6.0.0" />
16
+ </ItemGroup >
17
+
18
+ <ItemGroup Condition =" '$(TargetFramework)' == 'netstandard2.0'" >
19
+ <PackageReference Include =" Microsoft.Bcl.AsyncInterfaces" Version =" 6.0.0" />
20
+ </ItemGroup >
21
+
22
+ <ItemGroup Condition =" '$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'netstandard2.1'" >
17
23
<PackageReference Include =" System.Memory" Version =" 4.5.5" />
18
24
</ItemGroup >
19
25
20
26
<ItemGroup >
21
27
<PackageReference Update =" Microsoft.SourceLink.GitHub" Version =" 1.1.1" />
22
28
<PackageReference Update =" TurnerSoftware.BuildVersioning" Version =" 0.4.0" />
23
29
</ItemGroup >
24
-
30
+
25
31
</Project >
You can’t perform that action at this time.
0 commit comments