forked from aarani/NOnion
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit upgrades test project and our CI to use .NET 6. There's no excuse to use .netcoreapp 3.1 anymore. It's noteworthy to say that we will keep NOnion target platform on netstandard2.0 for the time being. P.S: My reason for this upgrade was mostly lack of native apple silicon support in .NET Core 3.1.
- Loading branch information
Showing
2 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,10 +10,10 @@ jobs: | |
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
- name: Setup .NET Core SDK 3.1.x | ||
- name: Setup .NET SDK 6.0.x | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: '3.1.x' | ||
dotnet-version: '6.0.x' | ||
- name: Install dependencies | ||
run: dotnet restore | ||
- name: Build | ||
|
@@ -31,10 +31,10 @@ jobs: | |
submodules: recursive | ||
# needed because of commit-lint, see https://github.com/conventional-changelog/commitlint/issues/3376 | ||
fetch-depth: 0 | ||
- name: Setup .NET SDK 5.0.x | ||
- name: Setup .NET SDK 6.0.x | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: '5.0.x' | ||
dotnet-version: '6.0.x' | ||
- name: Install dependencies | ||
run: dotnet restore | ||
- name: Build | ||
|
@@ -84,10 +84,10 @@ jobs: | |
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
- name: Setup .NET Core SDK 3.1.x | ||
- name: Setup .NET SDK 6.0.x | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: '3.1.x' | ||
dotnet-version: '6.0.x' | ||
- name: Install dependencies | ||
run: dotnet restore | ||
- name: Build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters