@@ -12,7 +12,7 @@ class Build : NukeBuild
12
12
[ Parameter ( "Configuration to build - Default is 'Debug' (local) or 'Release' (server)" ) ]
13
13
readonly Configuration Configuration = IsLocalBuild ? Configuration . Debug : Configuration . Release ;
14
14
15
- [ Parameter ] readonly string Version = "1.0 .0" ;
15
+ [ Parameter ] readonly string Version = "1.4 .0" ;
16
16
17
17
AbsolutePath SourceDirectory => RootDirectory / "K8sFileBrowser" ;
18
18
AbsolutePath OutputDirectory => RootDirectory / "output" ;
@@ -47,7 +47,7 @@ class Build : NukeBuild
47
47
. SetConfiguration ( Configuration )
48
48
. SetOutput ( WinOutputDirectory )
49
49
. EnableSelfContained ( )
50
- . SetFramework ( "net7 .0" )
50
+ . SetFramework ( "net8 .0" )
51
51
. SetRuntime ( "win-x64" )
52
52
. EnablePublishSingleFile ( )
53
53
. EnablePublishReadyToRun ( )
@@ -73,7 +73,7 @@ class Build : NukeBuild
73
73
. SetConfiguration ( Configuration )
74
74
. SetOutput ( LinuxOutputDirectory )
75
75
. EnableSelfContained ( )
76
- . SetFramework ( "net7 .0" )
76
+ . SetFramework ( "net8 .0" )
77
77
. SetRuntime ( "linux-x64" )
78
78
. EnablePublishSingleFile ( )
79
79
. EnablePublishReadyToRun ( )
@@ -98,7 +98,7 @@ class Build : NukeBuild
98
98
. SetConfiguration ( Configuration )
99
99
. SetOutput ( OsxOutputDirectory )
100
100
. EnableSelfContained ( )
101
- . SetFramework ( "net7 .0" )
101
+ . SetFramework ( "net8 .0" )
102
102
. SetRuntime ( "osx-arm64" )
103
103
. EnablePublishSingleFile ( )
104
104
. EnablePublishReadyToRun ( )
0 commit comments