Skip to content

Commit

Permalink
Merge pull request #2 from Happypig375/master
Browse files Browse the repository at this point in the history
Add netstandard2.1 target
  • Loading branch information
arogozine authored Jan 30, 2021
2 parents ebcaa66 + d541601 commit f587f63
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
10 changes: 5 additions & 5 deletions TupleAsJsonArray/TupleAsJsonArray.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFrameworks>netcoreapp3.1;netstandard2.1</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Alexandre Rogozine</Authors>
<Description>Convert C# Tuple to/from JSON Array</Description>
Expand All @@ -12,12 +12,12 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Nullable>enable</Nullable>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Version>1.0.1</Version>
<Version>1.0.2</Version>
<RepositoryType>git</RepositoryType>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile></DocumentationFile>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
<PackageReference Include="System.Text.Json" Version="4.6.0" />
</ItemGroup>

</Project>
1 change: 0 additions & 1 deletion TupleJsonUnitTests/TupleJsonUnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>

<IsPackable>false</IsPackable>
</PropertyGroup>

Expand Down

0 comments on commit f587f63

Please sign in to comment.