From 70350ec4bcd827bd569f90cdd069729f6d42ef7d Mon Sep 17 00:00:00 2001 From: BobLd <38405645+BobLd@users.noreply.github.com> Date: Sat, 29 Jan 2022 11:35:40 +0000 Subject: [PATCH 1/3] Update dotnet-core-linux.yml --- .github/workflows/dotnet-core-linux.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dotnet-core-linux.yml b/.github/workflows/dotnet-core-linux.yml index c3b6a99..63e31c9 100644 --- a/.github/workflows/dotnet-core-linux.yml +++ b/.github/workflows/dotnet-core-linux.yml @@ -16,12 +16,12 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 5.0.302 + dotnet-version: 6.0.x - name: Install mscorefonts run: sudo apt-get -y install ttf-mscorefonts-installer - name: Install dependencies run: dotnet restore - - name: Build netcoreapp3.1 - run: dotnet build --configuration Release --no-restore --framework net5.0 - - name: Test netcoreapp3.1 - run: dotnet test --no-restore --verbosity minimal --framework net5.0 + - name: Build net6.0 + run: dotnet build --configuration Release --no-restore --framework net6.0 + - name: Test net6.0 + run: dotnet test --no-restore --verbosity minimal --framework net6.0 From 963725f9c5ca010751351c98dac01f967b7f0889 Mon Sep 17 00:00:00 2001 From: BobLd <38405645+BobLd@users.noreply.github.com> Date: Sat, 29 Jan 2022 11:36:18 +0000 Subject: [PATCH 2/3] Update dotnet-core-mac.yml --- .github/workflows/dotnet-core-mac.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dotnet-core-mac.yml b/.github/workflows/dotnet-core-mac.yml index d0f10e1..1e7cf20 100644 --- a/.github/workflows/dotnet-core-mac.yml +++ b/.github/workflows/dotnet-core-mac.yml @@ -16,10 +16,10 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 5.0.302 + dotnet-version: 6.0.x - name: Install dependencies run: dotnet restore - - name: Build netcoreapp3.1 - run: dotnet build --configuration Release --no-restore --framework net5.0 - - name: Test netcoreapp3.1 - run: dotnet test --no-restore --verbosity minimal --framework net5.0 + - name: Build net6.0 + run: dotnet build --configuration Release --no-restore --framework net6.0 + - name: Test net6.0 + run: dotnet test --no-restore --verbosity minimal --framework net6.0 From 9b0e02ab55ad11213d49706f6c025e6d567c23ef Mon Sep 17 00:00:00 2001 From: BobLd <38405645+BobLd@users.noreply.github.com> Date: Sat, 29 Jan 2022 11:36:42 +0000 Subject: [PATCH 3/3] Update dotnet-core-win.yml --- .github/workflows/dotnet-core-win.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet-core-win.yml b/.github/workflows/dotnet-core-win.yml index 282525b..2800e9d 100644 --- a/.github/workflows/dotnet-core-win.yml +++ b/.github/workflows/dotnet-core-win.yml @@ -16,7 +16,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 5.0.302 + dotnet-version: 6.0.x - name: Install dependencies run: dotnet restore - name: Build