From 64fc1bc29460db8b525d2817078e1a40a197b4c9 Mon Sep 17 00:00:00 2001 From: Kuba314 <35199722+Kuba314@users.noreply.github.com> Date: Wed, 29 May 2024 10:53:42 +0200 Subject: Fix build -includepath help message The includepath argument was displayed as `-include` in help message while only `-includepath` is accepted. --- src/wix/WixToolset.Core/CommandLine/BuildCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 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."), -- cgit v1.2.3-55-g6feb