Fix build -includepath help message
The includepath argument was displayed as `-include` in help message while only `-includepath` is accepted.
Kuba314 committed
May 29, 2024 at 10:53 UTC
64fc1bc29460db8b525d2817078e1a40a197b4c9
1 file changed
+1
-1
src/wix/WixToolset.Core/CommandLine/BuildCommand.cs
+1
-1
@@ -56,7 +56,7 @@ namespace WixToolset.Core.CommandLine
56
new CommandLineHelpSwitch("-culture", "Adds a culture to filter localization files."),
57
new CommandLineHelpSwitch("-define", "-d", "Sets a preprocessor variable."),
58
new CommandLineHelpSwitch("-defaultcompressionlevel", "-dcl", "Default compression level; see Compression levels below."),
59
- new CommandLineHelpSwitch("-include", "-i", "Folder to search for include files."),
59
+ new CommandLineHelpSwitch("-includepath", "-i", "Folder to search for include files."),
60
new CommandLineHelpSwitch("-intermediatefolder", "Optional working folder. If not specified a folder in %TMP% will be created."),
61
new CommandLineHelpSwitch("-loc", "Localization file to use in the build. By default, .wxl files are recognized as localization."),
62
new CommandLineHelpSwitch("-lib", "Library file to use in the build. By default, .wixlib files are recognized as libraries."),