Skip to content

Commit

Permalink
Support .NET 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vijayshinva committed Nov 21, 2020
1 parent 7bdda15 commit 9f02bdb
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,17 @@ jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
- name: Setup .NET Core 3.1
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.x'
- name: Setup .NET 5.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.301
dotnet-version: '5.0'
- name: Install dependencies
run: dotnet restore
working-directory: Kryptos
Expand Down

0 comments on commit 9f02bdb

Please sign in to comment.