From 171ef6a87cdfd9b2179efe3536af7f967326073f Mon Sep 17 00:00:00 2001 From: Andreas Billmann Date: Thu, 9 Oct 2025 18:42:57 +0200 Subject: [PATCH] Update to newer nuget versions --- K8sFileBrowser/K8sFileBrowser.csproj | 23 ++++++++++++----------- build/Build.cs | 15 ++++++--------- build/_build.csproj | 4 ++-- global.json | 2 +- 4 files changed, 21 insertions(+), 23 deletions(-) diff --git a/K8sFileBrowser/K8sFileBrowser.csproj b/K8sFileBrowser/K8sFileBrowser.csproj index 59c9d18..441bf59 100644 --- a/K8sFileBrowser/K8sFileBrowser.csproj +++ b/K8sFileBrowser/K8sFileBrowser.csproj @@ -1,7 +1,7 @@  WinExe - net8.0 + net9.0 enable true app.manifest @@ -22,21 +22,22 @@ - - - - + + + + + - - - - + + + + - + - + diff --git a/build/Build.cs b/build/Build.cs index d3025b4..614d03f 100644 --- a/build/Build.cs +++ b/build/Build.cs @@ -47,15 +47,14 @@ class Build : NukeBuild .SetConfiguration(Configuration) .SetOutput(WinOutputDirectory) .EnableSelfContained() - .SetFramework("net8.0") + .SetFramework("net9.0") .SetRuntime("win-x64") .EnablePublishSingleFile() .EnablePublishReadyToRun() .SetAuthors("Andreas Billmann") .SetCopyright("Copyright (c) 2023") .SetVersion(Version) - .SetProcessArgumentConfigurator(_ => _ - .Add("-p:IncludeNativeLibrariesForSelfExtract=true"))); + .SetProcessAdditionalArguments("-p:IncludeNativeLibrariesForSelfExtract=true")); WinOutputDirectory.ZipTo( WinZip, @@ -73,15 +72,14 @@ class Build : NukeBuild .SetConfiguration(Configuration) .SetOutput(LinuxOutputDirectory) .EnableSelfContained() - .SetFramework("net8.0") + .SetFramework("net9.0") .SetRuntime("linux-x64") .EnablePublishSingleFile() .EnablePublishReadyToRun() .SetAuthors("Andreas Billmann") .SetCopyright("Copyright (c) 2023") .SetVersion(Version) - .SetProcessArgumentConfigurator(_ => _ - .Add("-p:IncludeNativeLibrariesForSelfExtract=true"))); + .SetProcessAdditionalArguments("-p:IncludeNativeLibrariesForSelfExtract=true")); LinuxOutputDirectory.TarGZipTo( LinuxGz, @@ -98,15 +96,14 @@ class Build : NukeBuild .SetConfiguration(Configuration) .SetOutput(OsxOutputDirectory) .EnableSelfContained() - .SetFramework("net8.0") + .SetFramework("net9.0") .SetRuntime("osx-arm64") .EnablePublishSingleFile() .EnablePublishReadyToRun() .SetAuthors("Andreas Billmann") .SetCopyright("Copyright (c) 2023") .SetVersion(Version) - .SetProcessArgumentConfigurator(_ => _ - .Add("-p:IncludeNativeLibrariesForSelfExtract=true"))); + .SetProcessAdditionalArguments("-p:IncludeNativeLibrariesForSelfExtract=true")); OsxOutputDirectory.TarGZipTo( OsxGz, diff --git a/build/_build.csproj b/build/_build.csproj index 7694661..d765605 100644 --- a/build/_build.csproj +++ b/build/_build.csproj @@ -2,7 +2,7 @@ Exe - net8.0 + net9.0 CS0649;CS0169 .. @@ -11,7 +11,7 @@ - + diff --git a/global.json b/global.json index 1df2109..93398a3 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.0", + "version": "9.0.0", "rollForward": "latestFeature", "allowPrerelease": false }