@@ -222,11 +222,11 @@ function Process-Arguments() {
222222
223223function Update-Arguments () {
224224 if ($script :noVisualStudio ) {
225- $script :bootstrapTfm = " net7 .0"
225+ $script :bootstrapTfm = " net8 .0"
226226 $script :msbuildEngine = " dotnet"
227227 }
228228
229- if ($bootstrapTfm -eq " net7 .0" ) {
229+ if ($bootstrapTfm -eq " net8 .0" ) {
230230 if (-Not (Test-Path " $ArtifactsDir \Bootstrap\fsc\fsc.runtimeconfig.json" )) {
231231 $script :bootstrap = $True
232232 }
@@ -247,7 +247,7 @@ function BuildSolution([string] $solutionName) {
247247 $officialBuildId = if ($official ) { $env: BUILD_BUILDNUMBER } else { " " }
248248 $toolsetBuildProj = InitializeToolset
249249 $quietRestore = ! $ci
250- $testTargetFrameworks = if ($testCoreClr ) { " net7 .0" } else { " " }
250+ $testTargetFrameworks = if ($testCoreClr ) { " net8 .0" } else { " " }
251251
252252 # Do not set the property to true explicitly, since that would override value projects might set.
253253 $suppressExtensionDeployment = if (! $deployExtensions ) { " /p:DeployExtension=false" } else { " " }
@@ -556,7 +556,7 @@ try {
556556 $script :BuildCategory = " Test"
557557 $script :BuildMessage = " Failure running tests"
558558 $desktopTargetFramework = " net472"
559- $coreclrTargetFramework = " net7 .0"
559+ $coreclrTargetFramework = " net8 .0"
560560
561561 if ($testCoreClr ) {
562562 $bgJob = TestUsingNUnit - testProject " $RepoRoot \tests\fsharp\FSharpSuite.Tests.fsproj" - targetFramework $coreclrTargetFramework - testadapterpath " $ArtifactsDir \bin\FSharpSuite.Tests\" - asBackgroundJob $true
0 commit comments