We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de62d01 commit ce97727Copy full SHA for ce97727
build.fsx
@@ -16,7 +16,7 @@ let version = baseVersion + "." + buildNumber
16
let semVersion =
17
match preRelease with
18
| "build" | "local" -> baseVersion + "-" + preRelease + "-" + buildNumber.PadLeft(4, '0')
19
- | "" -> baseVersion
+ | "#release#" -> baseVersion
20
| _ -> baseVersion + "-" + preRelease
21
22
let baseDir = currentDirectory
@@ -129,7 +129,7 @@ Target "Docs" (fun _ ->
129
130
let preliminary =
131
132
- | "" -> "False"
+ | "#release#" -> "False"
133
| _ -> "True"
134
135
let properties = ["Configuration", config
0 commit comments