diff options
author | Kuba314 <35199722+Kuba314@users.noreply.github.com> | 2024-05-29 10:53:42 +0200 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2024-06-10 23:11:23 -0400 |
commit | 64fc1bc29460db8b525d2817078e1a40a197b4c9 (patch) | |
tree | bc20f639ad7f3800089eddb49b48b1783f38672a /src | |
parent | 1a38763b97ce53fa99e1d16f739b93135698df41 (diff) | |
download | wix-64fc1bc29460db8b525d2817078e1a40a197b4c9.tar.gz wix-64fc1bc29460db8b525d2817078e1a40a197b4c9.tar.bz2 wix-64fc1bc29460db8b525d2817078e1a40a197b4c9.zip |
Fix build -includepath help message
The includepath argument was displayed as `-include` in help message
while only `-includepath` is accepted.
Diffstat (limited to '')
-rw-r--r-- | src/wix/WixToolset.Core/CommandLine/BuildCommand.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wix/WixToolset.Core/CommandLine/BuildCommand.cs b/src/wix/WixToolset.Core/CommandLine/BuildCommand.cs index cc0de13a..d07dd6aa 100644 --- a/src/wix/WixToolset.Core/CommandLine/BuildCommand.cs +++ b/src/wix/WixToolset.Core/CommandLine/BuildCommand.cs | |||
@@ -56,7 +56,7 @@ namespace WixToolset.Core.CommandLine | |||
56 | new CommandLineHelpSwitch("-culture", "Adds a culture to filter localization files."), | 56 | new CommandLineHelpSwitch("-culture", "Adds a culture to filter localization files."), |
57 | new CommandLineHelpSwitch("-define", "-d", "Sets a preprocessor variable."), | 57 | new CommandLineHelpSwitch("-define", "-d", "Sets a preprocessor variable."), |
58 | new CommandLineHelpSwitch("-defaultcompressionlevel", "-dcl", "Default compression level; see Compression levels below."), | 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."), | 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."), | 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."), | 62 | new CommandLineHelpSwitch("-lib", "Library file to use in the build. By default, .wixlib files are recognized as libraries."), |