From 4fb29e250b2f60cab8a4411ff056a7be17e46c47 Mon Sep 17 00:00:00 2001 From: David De Smet <2607383+idaviddesmet@users.noreply.github.com> Date: Mon, 8 Nov 2021 13:35:30 -0600 Subject: [PATCH] Added support for .NET 6 --- .github/workflows/ci.yml | 6 ++++-- Directory.Build.targets | 2 +- global.json | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 46b9633..c70781d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,8 @@ on: - main paths: - 'src/**' + - 'Directory.Build.props' + - 'Directory.Build.targets' pull_request: branches: - main @@ -41,10 +43,10 @@ jobs: - name: 'Install .NET SDK' uses: actions/setup-dotnet@v1 if: ${{ false }} - - name: 'Install .NET 6 RC2 SDK' + - name: 'Install .NET 6 SDK' uses: actions/setup-dotnet@v1 with: - dotnet-version: '6.0.100-rc.2.21505.57' + dotnet-version: '6.0.100' - name: '.NET Info' run: dotnet --info - name: '.NET Restore' diff --git a/Directory.Build.targets b/Directory.Build.targets index c84cc39..05a7052 100644 --- a/Directory.Build.targets +++ b/Directory.Build.targets @@ -1,6 +1,6 @@ - 6.0.0-rc.2.* + 6.0.* diff --git a/global.json b/global.json index e4a38c0..778f056 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "6.0.0-rc.2", + "version": "6.0.0", "rollForward": "latestFeature" } } \ No newline at end of file