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 c38e3ac commit f3f9ef4Copy full SHA for f3f9ef4
build/scripts/Versioning.fs
@@ -29,7 +29,7 @@ module Versioning =
29
let writeVersionIntoGlobalJson version =
30
let globalJson = globalJson ()
31
let newGlobalJson = { globalJson with version = version.ToString(); }
32
- File.WriteAllText("global.json", JsonConvert.SerializeObject(newGlobalJson))
+ File.WriteAllText("global.json", JsonConvert.SerializeObject(newGlobalJson, Formatting.Indented))
33
printfn "Written (%s) to global.json as the current version will use this version from now on as current in the build" (version.ToString())
34
35
let GlobalJsonVersion = parse <| globalJson().version
0 commit comments