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

Commit 031b252

Browse files
committed
Update documentation for new switches
Updates both the detailed help and the README.md for the new switches.
1 parent 65deca7 commit 031b252

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ $ .\CodeFormatter.exe
2222
CodeFormatter <project or solution> [<rule types>] [/file <filename>]
2323
<rule types> - Rule types to use in addition to the default ones.
2424
Use ConvertTests to convert MSTest tests to xUnit.
25-
<filename> - Only apply changes to files with specified name.
25+
<filename> - Only apply changes to files with specified name.
26+
<configs> - Additional preprocessor configurations the formatter
27+
should run under.
28+
<copyright> - Specifies file containing copyright header.
2629
```
2730

2831
## Contributing

src/CodeFormatter/Program.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ private static int Main(string[] args)
2828
Console.WriteLine(" Use ConvertTests to convert MSTest tests to xUnit.");
2929
Console.WriteLine(" <filename> - Only apply changes to files with specified name.");
3030
Console.WriteLine(" <configs> - Additional preprocessor configurations the formatter");
31-
Console.WriteLine(" should run under");
31+
Console.WriteLine(" should run under.");
32+
Console.WriteLine(" <copyright> - Specifies file containing copyright header.")
3233
return -1;
3334
}
3435

0 commit comments

Comments
 (0)