Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 8cdc795

Browse files
committed
Update ServiceStack.Text.Core.csproj
1 parent e968125 commit 8cdc795

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/ServiceStack.Text/ServiceStack.Text.Core.csproj

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
<PackageId>ServiceStack.Text.Core</PackageId>
44
<AssemblyName>ServiceStack.Text</AssemblyName>
55
<RootNamespace>ServiceStack.Text</RootNamespace>
6-
<TargetFrameworks>netstandard2.0;netcoreapp2.1</TargetFrameworks>
6+
<!-- <TargetFrameworks>netstandard2.0;netcoreapp2.1</TargetFrameworks> -->
7+
<TargetFrameworks>netstandard2.0;netcoreapp2.1;net6.0</TargetFrameworks>
78
<Title>ServiceStack.Text .NET Standard 2.0</Title>
89
<PackageDescription>
910
.NET's fastest JSON, JSV and CSV Text Serializers. Fast, Light, Resilient.
@@ -15,6 +16,9 @@
1516
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.1' ">
1617
<DefineConstants>$(DefineConstants);NETSTANDARD;NETCORE2_1</DefineConstants>
1718
</PropertyGroup>
19+
<PropertyGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
20+
<DefineConstants>$(DefineConstants);NETSTANDARD;NET6_0</DefineConstants>
21+
</PropertyGroup>
1822
<ItemGroup>
1923
<PackageReference Include="System.Memory" Version="4.5.4" />
2024
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
@@ -28,4 +32,9 @@
2832
<PackageReference Include="System.Reflection.Emit" Version="4.7.0" />
2933
<PackageReference Include="System.Reflection.Emit.LightWeight" Version="4.7.0" />
3034
</ItemGroup>
35+
<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
36+
<PackageReference Include="System.Runtime" Version="4.3.1" />
37+
<PackageReference Include="System.Reflection.Emit" Version="4.7.0" />
38+
<PackageReference Include="System.Reflection.Emit.LightWeight" Version="4.7.0" />
39+
</ItemGroup>
3140
</Project>

0 commit comments

Comments
 (0)