|
2 | 2 | <PropertyGroup>
|
3 | 3 | <PackageId>ServiceStack.Text</PackageId>
|
4 | 4 | <AssemblyName>ServiceStack.Text</AssemblyName>
|
5 |
| - <TargetFrameworks>net45;netstandard2.0;netcoreapp2.1;net6.0</TargetFrameworks> |
| 5 | + <TargetFrameworks>net472;netstandard2.0;net6.0</TargetFrameworks> |
6 | 6 | <Title>.NET's fastest JSON Serializer by ServiceStack</Title>
|
7 | 7 | <PackageDescription>
|
8 | 8 | .NET's fastest JSON, JSV and CSV Text Serializers. Fast, Light, Resilient.
|
|
15 | 15 | <PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
|
16 | 16 | <DefineConstants>$(DefineConstants);NETCORE;NETSTANDARD;NETSTANDARD2_0</DefineConstants>
|
17 | 17 | </PropertyGroup>
|
18 |
| - <PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.1' "> |
19 |
| - <DefineConstants>$(DefineConstants);NETCORE;NETCORE2_1</DefineConstants> |
20 |
| - </PropertyGroup> |
21 | 18 | <PropertyGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
|
22 | 19 | <DefineConstants>$(DefineConstants);NETCORE;NET6_0;NET6_0_OR_GREATER</DefineConstants>
|
23 | 20 | </PropertyGroup>
|
24 | 21 | <ItemGroup>
|
25 | 22 | <PackageReference Include="System.Memory" Version="4.5.4" />
|
26 | 23 | <PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
|
27 | 24 | </ItemGroup>
|
28 |
| - <ItemGroup Condition=" '$(TargetFramework)' == 'net45' "> |
| 25 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net472' "> |
29 | 26 | <Reference Include="System.Configuration" />
|
30 | 27 | </ItemGroup>
|
31 | 28 | <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
|
32 | 29 | <PackageReference Include="System.Runtime" Version="4.3.1" />
|
33 | 30 | <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="1.1.1" />
|
34 | 31 | </ItemGroup>
|
35 |
| - <ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.1' "> |
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> |
40 | 32 | <ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
|
41 | 33 | <PackageReference Include="System.Runtime" Version="4.3.1" />
|
42 | 34 | <PackageReference Include="System.Reflection.Emit" Version="4.7.0" />
|
|
0 commit comments