Skip to content

Commit

Permalink
Fix build -includepath help message
Browse files Browse the repository at this point in the history
The includepath argument was displayed as `-include` in help message
while only `-includepath` is accepted.
  • Loading branch information
Kuba314 authored and barnson committed Jun 11, 2024
1 parent 1a38763 commit 64fc1bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wix/WixToolset.Core/CommandLine/BuildCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public override CommandLineHelp GetCommandLineHelp()
new CommandLineHelpSwitch("-culture", "Adds a culture to filter localization files."),
new CommandLineHelpSwitch("-define", "-d", "Sets a preprocessor variable."),
new CommandLineHelpSwitch("-defaultcompressionlevel", "-dcl", "Default compression level; see Compression levels below."),
new CommandLineHelpSwitch("-include", "-i", "Folder to search for include files."),
new CommandLineHelpSwitch("-includepath", "-i", "Folder to search for include files."),
new CommandLineHelpSwitch("-intermediatefolder", "Optional working folder. If not specified a folder in %TMP% will be created."),
new CommandLineHelpSwitch("-loc", "Localization file to use in the build. By default, .wxl files are recognized as localization."),
new CommandLineHelpSwitch("-lib", "Library file to use in the build. By default, .wixlib files are recognized as libraries."),
Expand Down

0 comments on commit 64fc1bc

Please sign in to comment.