@@ -67,10 +67,10 @@ let mutable dotnetExePath = "dotnet"
6767
6868let buildDir = " bin"
6969let buildDirNet461 = buildDir @@ " net461"
70- let buildDirNetCore = buildDir @@ " netcoreapp3.1 "
70+ let buildDirNetCore = buildDir @@ " net8 "
7171let buildDirBootstrapper = " bin_bootstrapper"
7272let buildDirBootstrapperNet461 = buildDirBootstrapper @@ " net461"
73- let buildDirBootstrapperNetCore = buildDirBootstrapper @@ " netcoreapp2.1 "
73+ let buildDirBootstrapperNetCore = buildDirBootstrapper @@ " net8 "
7474let tempDir = " temp"
7575let buildMergedDir = buildDir @@ " merged"
7676let paketFile = buildMergedDir @@ " paket.exe"
@@ -199,7 +199,7 @@ Target "Publish" (fun _ ->
199199 DotNetCli.Publish ( fun c ->
200200 { c with
201201 Project = " src/Paket"
202- Framework = " netcoreapp3.1 "
202+ Framework = " net8 "
203203 Output = FullName ( currentDirectory </> buildDirNetCore)
204204 ToolPath = dotnetExePath
205205 AdditionalArgs = publishArgs
@@ -217,7 +217,7 @@ Target "Publish" (fun _ ->
217217 DotNetCli.Publish ( fun c ->
218218 { c with
219219 Project = " src/Paket.Bootstrapper"
220- Framework = " netcoreapp2.1 "
220+ Framework = " net8 "
221221 Output = FullName ( currentDirectory </> buildDirBootstrapperNetCore)
222222 ToolPath = dotnetExePath
223223 AdditionalArgs = publishArgs
@@ -355,7 +355,7 @@ Target "RunIntegrationTestsNetCore" (fun _ ->
355355 DotNetCli.Test ( fun c ->
356356 { c with
357357 Project = " integrationtests/Paket.IntegrationTests/Paket.IntegrationTests.fsproj"
358- Framework = " netcoreapp3.1 "
358+ Framework = " net8 "
359359 AdditionalArgs =
360360 [ " --filter" ; ( if testSuiteFilterFlakyTests then " TestCategory=Flaky" else " TestCategory!=Flaky" )
361361 sprintf " --logger:trx;LogFileName=%s " ( " tests_result/netcore/Paket.IntegrationTests/TestResult.trx" |> Path.GetFullPath) ]
@@ -728,4 +728,4 @@ Target "All" DoNothing
728728" EnsurePackageSigned"
729729 ==> " Release"
730730
731- RunTargetOrDefault " All"
731+ RunTargetOrDefault " All"
0 commit comments