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 d976a13 commit 40017b3Copy full SHA for 40017b3
src/Compiling/CompilerOptions.cs
@@ -1,4 +1,4 @@
1
-// Copyright (c) Microsoft Corporation.
+// Copyright (c) Microsoft Corporation.
2
// Licensed under the MIT License.
3
4
using System.Xml;
@@ -31,6 +31,6 @@ public CompilerOptions(IConfigurationRoot configuration)
31
OutputFolder = Path.GetFullPath(OutputFolder);
32
33
FileExtension = configuration["ext"] ?? "xml";
34
- Format = bool.TryParse(configuration["format"] ?? "false", out var fmt) && fmt;
+ Format = bool.TryParse(configuration["format"] ?? "true", out var fmt) && fmt;
35
}
36
0 commit comments