Skip to content

Commit f3f9ef4

Browse files
committed
Indent global.json
1 parent c38e3ac commit f3f9ef4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/scripts/Versioning.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module Versioning =
2929
let writeVersionIntoGlobalJson version =
3030
let globalJson = globalJson ()
3131
let newGlobalJson = { globalJson with version = version.ToString(); }
32-
File.WriteAllText("global.json", JsonConvert.SerializeObject(newGlobalJson))
32+
File.WriteAllText("global.json", JsonConvert.SerializeObject(newGlobalJson, Formatting.Indented))
3333
printfn "Written (%s) to global.json as the current version will use this version from now on as current in the build" (version.ToString())
3434

3535
let GlobalJsonVersion = parse <| globalJson().version

0 commit comments

Comments
 (0)