From 6c09739c8cd6ae022bb23abe3b59ccd8f1137fde Mon Sep 17 00:00:00 2001 From: Yaakov Date: Fri, 13 Sep 2024 16:14:19 +1000 Subject: [PATCH] Update to .NET 9 --- .github/workflows/build.yml | 2 -- .github/workflows/sk2-ci.yml | 2 -- DepotDownloader/DepotDownloader.csproj | 2 +- global.json | 2 +- 4 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 686a2cb5..9f463768 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,8 +29,6 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v4 - with: - dotnet-version: 8.0.x - name: Build run: dotnet publish DepotDownloader/DepotDownloader.csproj -c ${{ matrix.configuration }} -o artifacts /p:ContinuousIntegrationBuild=true diff --git a/.github/workflows/sk2-ci.yml b/.github/workflows/sk2-ci.yml index b7463d9c..cfbbb40f 100644 --- a/.github/workflows/sk2-ci.yml +++ b/.github/workflows/sk2-ci.yml @@ -21,8 +21,6 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v4 - with: - dotnet-version: 8.0.x - name: Configure NuGet run: | diff --git a/DepotDownloader/DepotDownloader.csproj b/DepotDownloader/DepotDownloader.csproj index d3df0646..4a7508b3 100644 --- a/DepotDownloader/DepotDownloader.csproj +++ b/DepotDownloader/DepotDownloader.csproj @@ -1,7 +1,7 @@  Exe - net8.0 + net9.0 true LatestMajor 2.7.3 diff --git a/global.json b/global.json index c19a2e05..2bc13e80 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.100", + "version": "9.0.100", "rollForward": "latestMinor" } }