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 c9f2c95 commit 86bfac3Copy full SHA for 86bfac3
src/GitVersionExe.Tests/ArgumentParserTests.cs
@@ -291,4 +291,12 @@ public void log_path_can_contain_forward_slash()
291
var arguments = ArgumentParser.ParseArguments("-l /some/path");
292
arguments.LogFilePath.ShouldBe("/some/path");
293
}
294
+
295
+ [Test]
296
+ public void boolean_argument_handling()
297
+ {
298
+ var arguments = ArgumentParser.ParseArguments("/nofetch /updateassemblyinfo true");
299
+ arguments.NoFetch.ShouldBe(true);
300
+ arguments.UpdateAssemblyInfo.ShouldBe(true);
301
+ }
302
0 commit comments