Skip to content
This repository was archived by the owner on Jul 12, 2022. It is now read-only.

Commit 2b3bd5a

Browse files
committed
Add more command-line option help
1 parent d6ef8e4 commit 2b3bd5a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/CodeFormatter/Program.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ private static int Main(string[] args)
1818
{
1919
if (args.Length < 1)
2020
{
21-
Console.Error.WriteLine("CodeFormatter <solution> [<rule types>] [/file <filename>]");
21+
Console.WriteLine("CodeFormatter <solution> [<rule types>] [/file <filename>]");
22+
Console.WriteLine(" <rule types> - Rule types to use in addition to the default ones.");
23+
Console.WriteLine(" Use ConvertTests to convert MSTest tests to xUnit.");
24+
Console.WriteLine(" <filename> - Only apply changes to files with specified name.");
2225
return -1;
2326
}
2427

0 commit comments

Comments
 (0)