diff options
author | Bob Arnson <bob@firegiant.com> | 2022-11-05 22:31:36 -0400 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-11-06 19:27:55 -0800 |
commit | f1b7df8ac8bd545d4329707761a81669b95c10e9 (patch) | |
tree | fb121792d593d73450cddf7fa17601ca72f172d9 /src | |
parent | cea1ddb1adeea09bd3457077c3aa717cb84124c4 (diff) | |
download | wix-f1b7df8ac8bd545d4329707761a81669b95c10e9.tar.gz wix-f1b7df8ac8bd545d4329707761a81669b95c10e9.tar.bz2 wix-f1b7df8ac8bd545d4329707761a81669b95c10e9.zip |
Visible string cleanup.
Diffstat (limited to 'src')
8 files changed, 12 insertions, 12 deletions
diff --git a/src/wix/WixToolset.Converters/ConverterExtensionCommandLine.cs b/src/wix/WixToolset.Converters/ConverterExtensionCommandLine.cs index f9facf99..26d95ec4 100644 --- a/src/wix/WixToolset.Converters/ConverterExtensionCommandLine.cs +++ b/src/wix/WixToolset.Converters/ConverterExtensionCommandLine.cs | |||
@@ -27,7 +27,7 @@ namespace WixToolset.Converters | |||
27 | Commands = new[] | 27 | Commands = new[] |
28 | { | 28 | { |
29 | new CommandLineHelpCommand("convert", "Convert v3 source code to v4 source code."), | 29 | new CommandLineHelpCommand("convert", "Convert v3 source code to v4 source code."), |
30 | new CommandLineHelpCommand("format", "Ensures consistent formatting of source code."), | 30 | new CommandLineHelpCommand("format", "Ensure consistent formatting of source code."), |
31 | } | 31 | } |
32 | }; | 32 | }; |
33 | } | 33 | } |
diff --git a/src/wix/WixToolset.Converters/FormatCommand.cs b/src/wix/WixToolset.Converters/FormatCommand.cs index f3c8efdd..4fc58426 100644 --- a/src/wix/WixToolset.Converters/FormatCommand.cs +++ b/src/wix/WixToolset.Converters/FormatCommand.cs | |||
@@ -17,7 +17,7 @@ namespace WixToolset.Converters | |||
17 | 17 | ||
18 | public override CommandLineHelp GetCommandLineHelp() | 18 | public override CommandLineHelp GetCommandLineHelp() |
19 | { | 19 | { |
20 | return new CommandLineHelp("Ensures consistent formatting of source code.", "format [options] sourceFile [sourceFile ...]") | 20 | return new CommandLineHelp("Ensure consistent formatting of source code.", "format [options] sourceFile [sourceFile ...]") |
21 | { | 21 | { |
22 | Switches = new[] | 22 | Switches = new[] |
23 | { | 23 | { |
diff --git a/src/wix/WixToolset.Core.Burn/CommandLine/BurnCommand.cs b/src/wix/WixToolset.Core.Burn/CommandLine/BurnCommand.cs index 7129f867..653f03fb 100644 --- a/src/wix/WixToolset.Core.Burn/CommandLine/BurnCommand.cs +++ b/src/wix/WixToolset.Core.Burn/CommandLine/BurnCommand.cs | |||
@@ -33,10 +33,10 @@ namespace WixToolset.Core.Burn.CommandLine | |||
33 | { | 33 | { |
34 | Commands = new[] | 34 | Commands = new[] |
35 | { | 35 | { |
36 | new CommandLineHelpCommand("detach", "Detaches the burn engine from a bundle so it can be signed."), | 36 | new CommandLineHelpCommand("detach", "Detach the Burn engine from a bundle so it can be signed."), |
37 | new CommandLineHelpCommand("extract", "Extracts the internals of a bundle to a folder."), | 37 | new CommandLineHelpCommand("extract", "Extract the internals of a bundle to a folder."), |
38 | new CommandLineHelpCommand("reattach", "Reattaches a signed burn engine to a bundle."), | 38 | new CommandLineHelpCommand("reattach", "Reattach a signed Burn engine to a bundle."), |
39 | new CommandLineHelpCommand("remotepayload", "Extracts the internals of a bundle."), | 39 | new CommandLineHelpCommand("remotepayload", "Generate source code for a remote payload."), |
40 | } | 40 | } |
41 | }; | 41 | }; |
42 | } | 42 | } |
diff --git a/src/wix/WixToolset.Core.Burn/CommandLine/DetachSubcommand.cs b/src/wix/WixToolset.Core.Burn/CommandLine/DetachSubcommand.cs index 30345cc2..c43e1b62 100644 --- a/src/wix/WixToolset.Core.Burn/CommandLine/DetachSubcommand.cs +++ b/src/wix/WixToolset.Core.Burn/CommandLine/DetachSubcommand.cs | |||
@@ -31,7 +31,7 @@ namespace WixToolset.Core.Burn.CommandLine | |||
31 | 31 | ||
32 | public override CommandLineHelp GetCommandLineHelp() | 32 | public override CommandLineHelp GetCommandLineHelp() |
33 | { | 33 | { |
34 | return new CommandLineHelp("Detaches the burn engine from a bundle so it can be signed.", "burn detach [options] original.exe -engine engine.exe", new[] | 34 | return new CommandLineHelp("Detaches the Burn engine from a bundle so it can be signed.", "burn detach [options] original.exe -engine engine.exe", new[] |
35 | { | 35 | { |
36 | new CommandLineHelpSwitch("-intermediateFolder", "Optional working folder. If not specified %TMP% will be used."), | 36 | new CommandLineHelpSwitch("-intermediateFolder", "Optional working folder. If not specified %TMP% will be used."), |
37 | new CommandLineHelpSwitch("-engine", "Path to extract bundle's engine file to."), | 37 | new CommandLineHelpSwitch("-engine", "Path to extract bundle's engine file to."), |
diff --git a/src/wix/WixToolset.Core.ExtensionCache/ExtensionCacheManagerExtensionCommandLine.cs b/src/wix/WixToolset.Core.ExtensionCache/ExtensionCacheManagerExtensionCommandLine.cs index 788b986c..19646e04 100644 --- a/src/wix/WixToolset.Core.ExtensionCache/ExtensionCacheManagerExtensionCommandLine.cs +++ b/src/wix/WixToolset.Core.ExtensionCache/ExtensionCacheManagerExtensionCommandLine.cs | |||
@@ -24,7 +24,7 @@ namespace WixToolset.Core.ExtensionCache | |||
24 | { | 24 | { |
25 | return new CommandLineHelp("Manage the extension cache.") | 25 | return new CommandLineHelp("Manage the extension cache.") |
26 | { | 26 | { |
27 | Commands = new[] { new CommandLineHelpCommand("extension", "Manage extension cache.") } | 27 | Commands = new[] { new CommandLineHelpCommand("extension", "Manage WiX extension cache.") } |
28 | }; | 28 | }; |
29 | } | 29 | } |
30 | 30 | ||
diff --git a/src/wix/WixToolset.Core.WindowsInstaller/WindowsInstallerExtensionCommandLine.cs b/src/wix/WixToolset.Core.WindowsInstaller/WindowsInstallerExtensionCommandLine.cs index 2919451c..23381c61 100644 --- a/src/wix/WixToolset.Core.WindowsInstaller/WindowsInstallerExtensionCommandLine.cs +++ b/src/wix/WixToolset.Core.WindowsInstaller/WindowsInstallerExtensionCommandLine.cs | |||
@@ -27,7 +27,7 @@ namespace WixToolset.Core.WindowsInstaller | |||
27 | { | 27 | { |
28 | Commands = new[] | 28 | Commands = new[] |
29 | { | 29 | { |
30 | new CommandLineHelpCommand("msi", "Windows Installer specialized operations."), | 30 | new CommandLineHelpCommand("msi", "Specialized operations for manipulating Windows Installer packages."), |
31 | } | 31 | } |
32 | }; | 32 | }; |
33 | } | 33 | } |
diff --git a/src/wix/WixToolset.Core/CommandLine/BuildCommand.cs b/src/wix/WixToolset.Core/CommandLine/BuildCommand.cs index f56e74ec..4cc2227c 100644 --- a/src/wix/WixToolset.Core/CommandLine/BuildCommand.cs +++ b/src/wix/WixToolset.Core/CommandLine/BuildCommand.cs | |||
@@ -58,7 +58,7 @@ namespace WixToolset.Core.CommandLine | |||
58 | new CommandLineHelpSwitch("-include", "-i", "Folder to search for include files."), | 58 | new CommandLineHelpSwitch("-include", "-i", "Folder to search for include files."), |
59 | new CommandLineHelpSwitch("-intermediatefolder", "Optional working folder. If not specified a folder in %TMP% will be created."), | 59 | new CommandLineHelpSwitch("-intermediatefolder", "Optional working folder. If not specified a folder in %TMP% will be created."), |
60 | new CommandLineHelpSwitch("-loc", "Localization file to use in the build. By default, .wxl files are recognized as localization."), | 60 | new CommandLineHelpSwitch("-loc", "Localization file to use in the build. By default, .wxl files are recognized as localization."), |
61 | new CommandLineHelpSwitch("-lib", "Library file to use in the build. By default, .wixlb files are recognized as libraries."), | 61 | new CommandLineHelpSwitch("-lib", "Library file to use in the build. By default, .wixlib files are recognized as libraries."), |
62 | new CommandLineHelpSwitch("-src", "Source file to use in the build. By default, .wxs files are recognized as source code."), | 62 | new CommandLineHelpSwitch("-src", "Source file to use in the build. By default, .wxs files are recognized as source code."), |
63 | new CommandLineHelpSwitch("-out", "-o", "Path to output the build to."), | 63 | new CommandLineHelpSwitch("-out", "-o", "Path to output the build to."), |
64 | new CommandLineHelpSwitch("-outputtype", "Explicitly set the output type if it cannot be determined from the output."), | 64 | new CommandLineHelpSwitch("-outputtype", "Explicitly set the output type if it cannot be determined from the output."), |
diff --git a/src/wix/WixToolset.Core/CommandLine/HelpCommand.cs b/src/wix/WixToolset.Core/CommandLine/HelpCommand.cs index f6d3d776..e8218b58 100644 --- a/src/wix/WixToolset.Core/CommandLine/HelpCommand.cs +++ b/src/wix/WixToolset.Core/CommandLine/HelpCommand.cs | |||
@@ -35,12 +35,12 @@ namespace WixToolset.Core.CommandLine | |||
35 | Switches = new[] | 35 | Switches = new[] |
36 | { | 36 | { |
37 | new CommandLineHelpSwitch("--help", "-h", "Show command line help."), | 37 | new CommandLineHelpSwitch("--help", "-h", "Show command line help."), |
38 | new CommandLineHelpSwitch("--version", "-v", "Display WiX Toolset version in use."), | 38 | new CommandLineHelpSwitch("--version", "Display WiX Toolset version in use."), |
39 | new CommandLineHelpSwitch("--nologo", "Suppress displaying the logo information."), | 39 | new CommandLineHelpSwitch("--nologo", "Suppress displaying the logo information."), |
40 | }, | 40 | }, |
41 | Commands = new[] | 41 | Commands = new[] |
42 | { | 42 | { |
43 | new CommandLineHelpCommand("build", "Build a wixlib, package or bundle.") | 43 | new CommandLineHelpCommand("build", "Build a wixlib, package, or bundle.") |
44 | }, | 44 | }, |
45 | Notes = "Run 'wix [command] -h' for more information on a command." | 45 | Notes = "Run 'wix [command] -h' for more information on a command." |
46 | }; | 46 | }; |