diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 0f01c69..a4f0f95 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -43,18 +43,13 @@ jobs: with: fetch-depth: 0 - - name: Install .NET ${{ env.DotNet8Version }} and ${{ env.DotNet9Version }} + - name: Install .NET ${{ env.DotNet8Version }}, ${{ env.DotNet9Version }}, and ${{ env.DotNet10Version }} uses: actions/setup-dotnet@v5 with: dotnet-version: | ${{ env.DotNet8Version }} ${{ env.DotNet9Version }} - - - name: Install .NET ${{ env.DotNet10Version }} - uses: actions/setup-dotnet@v5 - with: - dotnet-version: ${{ env.DotNet10Version }} - dotnet-quality: 'preview' + ${{ env.DotNet10Version }} - name: Build Solution run: dotnet build "/Property:Platform=${{ env.BuildPlatform }};Configuration=${{ env.BuildConfiguration }}" "/BinaryLogger:${{ env.ArtifactsDirectoryName }}/build.binlog" diff --git a/.github/workflows/Official.yml b/.github/workflows/Official.yml index 6907ae6..9b411da 100644 --- a/.github/workflows/Official.yml +++ b/.github/workflows/Official.yml @@ -33,7 +33,6 @@ jobs: with: dotnet-version: | ${{ env.DotNet10Version }} - dotnet-quality: 'preview' - name: Build Solution run: dotnet build "/Property:Platform=${{ env.BuildPlatform }};Configuration=${{ env.BuildConfiguration }}" "/BinaryLogger:${{ env.ArtifactsDirectoryName }}\build.binlog" diff --git a/Directory.Packages.props b/Directory.Packages.props index 16b6dbd..dfd19a2 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -2,8 +2,10 @@ true - 17.14.28 - 17.11.48 + 18.0.2 + 18.0.2 + 17.14.28 + 17.11.48 diff --git a/global.json b/global.json index e537c72..9682ab7 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "10.0.100-alpha", + "version": "10.0.100", "rollForward": "latestMinor", "allowPrerelease": true }