Skip to content

Commit 8ca6729

Browse files
committed
Fix mpc arg documentation
We do not support a comma-delimited list. Supporting it wouldn't be significantly more efficient than having the caller invoke the tool multiple times, so I'm fixing the docs to reflect functionality rather than adding list support.
1 parent 090c73f commit 8ca6729

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MessagePack.Generator/MessagepackCompiler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ await Host.CreateDefaultBuilder()
3939
}
4040

4141
public async Task RunAsync(
42-
[Option("i", "Input path of analyze MSBuild project file or directory, if input multiple project files split with ','.")] string input,
42+
[Option("i", "Input path to MSBuild project file or the directory containing Unity source files.")] string input,
4343
[Option("o", "Output file path(.cs) or directory (multiple generate file).")] string output,
4444
[Option("c", "Conditional compiler symbols, split with ','. Ignored if a project file is specified for input.")] string? conditionalSymbol = null,
4545
[Option("r", "Set resolver name.")] string resolverName = "GeneratedResolver",

0 commit comments

Comments
 (0)