Skip to content

Commit

Permalink
build.fsx: change test targets from net7.0 to net8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaronontheweb committed Nov 29, 2023
1 parent 527d1ca commit 43d3f0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ let outputMultiNode = outputTests @@ "multinode"
let outputFailedMultiNode = outputTests @@ "multinode" @@ "FAILED_SPECS_LOGS"
let outputBinariesNet45 = outputBinaries @@ "net45"
let outputBinariesNetStandard = outputBinaries @@ "netstandard2.0"
let outputBinariesNet = outputBinaries @@ "net7.0"
let outputBinariesNet = outputBinaries @@ "net8.0"

let buildNumber = environVarOrDefault "BUILD_NUMBER" "0"
let hasTeamCity = (not (buildNumber = "0")) // check if we have the TeamCity environment variable for build # set
Expand Down Expand Up @@ -56,7 +56,7 @@ let incrementalistReport = output @@ "incrementalist.txt"

// Configuration values for tests
let testNetFrameworkVersion = "net471"
let testNetVersion = "net7.0"
let testNetVersion = "net8.0"

Target "Clean" (fun _ ->
ActivateFinalTarget "KillCreatedProcesses"
Expand Down

0 comments on commit 43d3f0c

Please sign in to comment.