Skip to content

Commit f5ebfc8

Browse files
committed
fixup
1 parent 8091e38 commit f5ebfc8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

scripts/make.fsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ let UNIX_NAME = "gwallet"
3434
let DEFAULT_FRONTEND = "GWallet.Frontend.Console"
3535
let BACKEND = "GWallet.Backend"
3636

37+
// format: X.Y (can't be X.Y.Z here
38+
let DOTNET_VERSION = "8.0"
39+
3740
type BinaryConfig =
3841
| Debug
3942
| Release
@@ -272,7 +275,8 @@ let GetPathToFrontendBinariesDir (binaryConfig: BinaryConfig) =
272275
#if LEGACY_FRAMEWORK
273276
Path.Combine (FsxHelper.RootDir.FullName, "src", DEFAULT_FRONTEND, "bin", binaryConfig.ToString())
274277
#else
275-
Path.Combine (FsxHelper.RootDir.FullName, "src", DEFAULT_FRONTEND, "bin", binaryConfig.ToString(), "net6.0")
278+
Path.Combine (FsxHelper.RootDir.FullName, "src", DEFAULT_FRONTEND, "bin", binaryConfig.ToString(),
279+
sprintf "net%s" DOTNET_VERSION)
276280
#endif
277281

278282
let GetPathToBackend () =

0 commit comments

Comments
 (0)