diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 1f95b27..43e6f74 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "cake.tool": { - "version": "4.2.0", + "version": "5.0.0", "commands": [ "dotnet-cake" ] diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 3cd7d3d..73c82f3 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -25,7 +25,7 @@ jobs: id: setup-dotnet uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25 # v4.1.0 with: - dotnet-version: '8.0.x' + dotnet-version: '9.0.x' - name: Cake Action id: cake-action diff --git a/deployment/cake/lib-msbuild.cake b/deployment/cake/lib-msbuild.cake index bf3b670..c365f5b 100644 --- a/deployment/cake/lib-msbuild.cake +++ b/deployment/cake/lib-msbuild.cake @@ -1,6 +1,6 @@ -#addin "nuget:?package=Cake.Issues&version=4.11.0" -#addin "nuget:?package=Cake.Issues.MsBuild&version=4.11.0" -#addin "nuget:?package=System.Configuration.ConfigurationManager&version=8.0.1" +#addin "nuget:?package=Cake.Issues&version=4.12.0" +#addin "nuget:?package=Cake.Issues.MsBuild&version=4.12.0" +#addin "nuget:?package=System.Configuration.ConfigurationManager&version=9.0.0" #tool "nuget:?package=MSBuild.Extension.Pack&version=1.9.1" diff --git a/deployment/cake/tasks.cake b/deployment/cake/tasks.cake index 33c6ce4..4741b53 100644 --- a/deployment/cake/tasks.cake +++ b/deployment/cake/tasks.cake @@ -36,7 +36,7 @@ // It probably means the tool is not correctly installed. // `dotnet tool install --global dotnet-sonarscanner --ignore-failed-sources` //#tool "nuget:?package=MSBuild.SonarQube.Runner.Tool&version=4.8.0" -#tool "nuget:?package=dotnet-sonarscanner&version=9.0.1" +#tool "nuget:?package=dotnet-sonarscanner&version=9.0.2" //------------------------------------------------------------- // BACKWARDS COMPATIBILITY CODE - START diff --git a/src/global.json b/src/global.json index caeea6c..fb04634 100644 --- a/src/global.json +++ b/src/global.json @@ -3,7 +3,7 @@ "MSBuild.Sdk.Extras": "3.0.44" }, "sdk": { - "version": "8.0.0", + "version": "9.0.0", "rollForward": "latestMinor", "allowPrerelease": false }