Skip to content

Commit f8993ff

Browse files
authored
Merge pull request #20 from yavuztor/dev
Added netstandard2.1.
2 parents 3ece8b4 + 06c7f16 commit f8993ff

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.github/workflows/dotnetcore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup .NET Core
1919
uses: actions/setup-dotnet@v1
2020
with:
21-
dotnet-version: 2.1.500
21+
dotnet-version: 3.1.402
2222

2323
- name: Prepare signing key
2424
if: github.event_name == 'release'

JsonLogic.Net.UnitTests/JsonLogic.Net.UnitTests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp2.0</TargetFramework>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
88

99
<ItemGroup>
1010
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" />
11-
<PackageReference Include="xunit" Version="2.3.1" />
12-
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
11+
<PackageReference Include="xunit" Version="2.4.1" />
12+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
1313
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
1414
</ItemGroup>
1515

JsonLogic.Net/JsonLogic.Net.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;netstandard1.0</TargetFrameworks>
5-
<Version>1.1.8</Version>
4+
<TargetFrameworks>netstandard2.1;netstandard2.0;netstandard1.0</TargetFrameworks>
5+
<Version>1.1.9</Version>
66
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
77
<Copyright>Copyright 2018</Copyright>
88
<PackageLicenseUrl>https://raw.githubusercontent.com/yavuztor/JsonLogic.Net/master/LICENSE</PackageLicenseUrl>

release-notes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 1.1.9
2+
- Added `netstandard2.1`. Updated test project to run with dotnet 3.1.
13
## 1.1.8
24
- Moved publishing package to github actions.
35
## 1.1.6

0 commit comments

Comments
 (0)