Skip to content

Commit

Permalink
Support for .Net Core RC2
Browse files Browse the repository at this point in the history
  • Loading branch information
Michaël Catanzariti committed Oct 18, 2020
1 parent 8a82966 commit 32676e8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/BuildAndTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,16 @@ jobs:
with:
dotnet-version: 3.1.100

- name: setup .net core 5.0.100-rc.1.20452.10
- name: setup .net core 5.0.100-rc.2.20479.15
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.100-rc.1.20452.10
dotnet-version: 5.0.100-rc.2.20479.15

# workaround for using multiple dotnet core installs
- name: setup multiple sdks
run: |
rsync -a ${DOTNET_ROOT/5.0.100-rc.1.20452.10/2.1.809}/* $DOTNET_ROOT/
rsync -a ${DOTNET_ROOT/5.0.100-rc.1.20452.10/3.1.100}/* $DOTNET_ROOT/
rsync -a ${DOTNET_ROOT/5.0.100-rc.2.20479.15/2.1.809}/* $DOTNET_ROOT/
rsync -a ${DOTNET_ROOT/5.0.100-rc.2.20479.15/3.1.100}/* $DOTNET_ROOT/
dotnet --info
- name: build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: setup
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.100-rc.1.20452.10
dotnet-version: 5.0.100-rc.2.20479.15

- name: build
run: dotnet pack -p:Version=${GITHUB_REF##*/} -p:FileVersion=${GITHUB_REF##*/} -p:AssemblyVersion=${GITHUB_REF##*/} -c Release src/Dahomey.Json
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The main purpose of this library is to bring missing features to the official .N
## Supported .NET versions
* .NET Standard 2.0
* .NET Core 3.1
* .NET 5.0 (RC 1)
* .NET 5.0 (RC 2)

## Features
* Extensible Polymorphism support based on discriminator conventions ([example](https://github.com/dahomey-technologies/Dahomey.Json/blob/master/src/Dahomey.Json.Tests/DiscriminatorTests.cs))
Expand Down

0 comments on commit 32676e8

Please sign in to comment.