Skip to content

Commit 47abf2c

Browse files
committed
Adding support for ASP.NET Core 6
1 parent addc677 commit 47abf2c

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/cd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ jobs:
1212
- name: Extract VERSION
1313
run: echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
1414
shell: bash
15-
- name: Setup .NET Core 2.1 SDK
16-
uses: actions/setup-dotnet@v1
17-
with:
18-
dotnet-version: '2.1.x'
1915
- name: Setup .NET Core 3.1 SDK
2016
uses: actions/setup-dotnet@v1
2117
with:
@@ -24,6 +20,10 @@ jobs:
2420
uses: actions/setup-dotnet@v1
2521
with:
2622
dotnet-version: '5.0.x'
23+
- name: Setup .NET 6.0 SDK
24+
uses: actions/setup-dotnet@v1
25+
with:
26+
dotnet-version: '6.0.x'
2727
- name: Restore
2828
run: dotnet restore
2929
- name: Build

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ jobs:
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v2
15-
- name: Setup .NET Core 2.1 SDK
16-
uses: actions/setup-dotnet@v1
17-
with:
18-
dotnet-version: '2.1.x'
1915
- name: Setup .NET Core 3.1 SDK
2016
uses: actions/setup-dotnet@v1
2117
with:
@@ -24,6 +20,10 @@ jobs:
2420
uses: actions/setup-dotnet@v1
2521
with:
2622
dotnet-version: '5.0.x'
23+
- name: Setup .NET 6.0 SDK
24+
uses: actions/setup-dotnet@v1
25+
with:
26+
dotnet-version: '6.0.x'
2727
- name: Restore
2828
run: dotnet restore
2929
- name: Build

.github/workflows/gh-pages.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ jobs:
66
steps:
77
- name: Checkout
88
uses: actions/checkout@v2
9-
- name: Setup .NET Core 2.1 SDK
10-
uses: actions/setup-dotnet@v1
11-
with:
12-
dotnet-version: '2.1.x'
139
- name: Setup .NET Core 3.1 SDK
1410
uses: actions/setup-dotnet@v1
1511
with:
@@ -18,6 +14,10 @@ jobs:
1814
uses: actions/setup-dotnet@v1
1915
with:
2016
dotnet-version: '5.0.x'
17+
- name: Setup .NET 6.0 SDK
18+
uses: actions/setup-dotnet@v1
19+
with:
20+
dotnet-version: '6.0.x'
2121
- name: Restore
2222
run: dotnet restore
2323
- name: Build

0 commit comments

Comments
 (0)