diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index da200cd..43e6f74 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "cake.tool": { - "version": "4.0.0", + "version": "5.0.0", "commands": [ "dotnet-cake" ] diff --git a/appveyor.yml b/appveyor.yml index a3357b5..1d0a8bf 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,9 +6,8 @@ install: - ps: $env:DOTNET_INSTALL_DIR = "$pwd\.dotnetsdk" - ps: mkdir $env:DOTNET_INSTALL_DIR -Force | Out-Null - ps: Invoke-WebRequest -Uri "https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.ps1" -OutFile "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" - - ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 6.0.418 -InstallDir $env:DOTNET_INSTALL_DIR' - - ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 7.0.405 -InstallDir $env:DOTNET_INSTALL_DIR' - - ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 8.0.101 -InstallDir $env:DOTNET_INSTALL_DIR' + - ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 8.0.404 -InstallDir $env:DOTNET_INSTALL_DIR' + - ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 9.0.100 -InstallDir $env:DOTNET_INSTALL_DIR' - ps: $env:Path = "$env:DOTNET_INSTALL_DIR;$env:Path" - ps: dotnet --info diff --git a/build.cake b/build.cake index 6412615..51fe225 100644 --- a/build.cake +++ b/build.cake @@ -76,7 +76,7 @@ Setup(ctx => isLocalBuild, configuration, target, - new[]{ "net6.0", "net7.0", "net8.0" }, + new[]{ "net8.0", "net9.0" }, new DotNetMSBuildSettings() .WithProperty("Version", semVersion) .WithProperty("AssemblyVersion", version) @@ -221,7 +221,7 @@ Task("Create-NuGet-Package-Scripting") var cakeGit = context.GetFiles(data.BuildPaths.ArtifactsRoot.FullPath + "/**/Cake.Git.dll"); var cakeGitDoc = context.GetFiles(data.BuildPaths.ArtifactsRoot.FullPath + "/**/Cake.Git.xml"); var libGit = context.GetFiles(data.BuildPaths.ArtifactsRoot.FullPath + "/**/LibGit2Sharp*"); - var unmanaged = context.GetFiles(data.BuildPaths.ArtifactsRoot.FullPath + "/net6.0/runtimes/**/*"); + var unmanaged = context.GetFiles(data.BuildPaths.ArtifactsRoot.FullPath + "/net8.0/runtimes/**/*"); data.NuGetPackSettings.Description += Environment.NewLine + Environment.NewLine + "NOTE:" + Environment.NewLine + diff --git a/global.json b/global.json index 7eb9bc5..dcc8f8f 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.100", + "version": "9.0.100", "rollForward": "feature" } } \ No newline at end of file diff --git a/src/Cake.Git/Cake.Git.csproj b/src/Cake.Git/Cake.Git.csproj index 8f2b930..cf08c97 100644 --- a/src/Cake.Git/Cake.Git.csproj +++ b/src/Cake.Git/Cake.Git.csproj @@ -1,6 +1,6 @@ - net6.0;net7.0;net8.0 + net8.0;net9.0 false $(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb @@ -20,7 +20,7 @@ - + diff --git a/test_net6.0.cake b/test_net6.0.cake deleted file mode 100644 index ab71d93..0000000 --- a/test_net6.0.cake +++ /dev/null @@ -1,2 +0,0 @@ -#r "./tools/Addins/Cake.Git/Cake.Git/lib/net6.0/Cake.Git.dll" -#load test.cake \ No newline at end of file diff --git a/test_net7.0.cake b/test_net7.0.cake deleted file mode 100644 index b83193c..0000000 --- a/test_net7.0.cake +++ /dev/null @@ -1,2 +0,0 @@ -#r "./tools/Addins/Cake.Git/Cake.Git/lib/net7.0/Cake.Git.dll" -#load test.cake \ No newline at end of file diff --git a/test_net9.0.cake b/test_net9.0.cake new file mode 100644 index 0000000..5b62f2d --- /dev/null +++ b/test_net9.0.cake @@ -0,0 +1,2 @@ +#r "./tools/Addins/Cake.Git/Cake.Git/lib/net9.0/Cake.Git.dll" +#load test.cake \ No newline at end of file