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

Commit c6898df

Browse files
committed
Update .Source.csproj's to only netstandard/net6
1 parent beecf37 commit c6898df

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

global.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/ServiceStack.Text/ServiceStack.Text.csproj

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
<PropertyGroup>
33
<PackageId>ServiceStack.Text</PackageId>
44
<AssemblyName>ServiceStack.Text</AssemblyName>
5-
<!--TargetFrameworks>net45;netstandard2.0;netcoreapp2.1</TargetFrameworks-->
6-
<TargetFrameworks>net45;netstandard2.0;netcoreapp2.1;net6.0</TargetFrameworks>
5+
<TargetFrameworks>netstandard2.0;netcoreapp2.1;net6.0</TargetFrameworks>
76
<Title>.NET's fastest JSON Serializer by ServiceStack</Title>
87
<PackageDescription>
98
.NET's fastest JSON, JSV and CSV Text Serializers. Fast, Light, Resilient.
@@ -15,19 +14,13 @@
1514
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.1' ">
1615
<DefineConstants>$(DefineConstants);NETCORE;NETCORE2_1</DefineConstants>
1716
</PropertyGroup>
18-
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
19-
<DefineConstants>$(DefineConstants);NETCORE;NETSTANDARD;NETSTANDARD2_0</DefineConstants>
20-
</PropertyGroup>
2117
<PropertyGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
22-
<DefineConstants>$(DefineConstants);NETCORE;NET6_0;NET6_0_OR_GREATER</DefineConstants>
18+
<DefineConstants>$(DefineConstants);NETSTANDARD;NET6_0</DefineConstants>
2319
</PropertyGroup>
2420
<ItemGroup>
2521
<PackageReference Include="System.Memory" Version="4.5.4" />
2622
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
2723
</ItemGroup>
28-
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
29-
<Reference Include="System.Configuration" />
30-
</ItemGroup>
3124
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
3225
<PackageReference Include="System.Runtime" Version="4.3.1" />
3326
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="1.1.1" />

0 commit comments

Comments
 (0)