Visible string cleanup.
Bob Arnson committed
Nov 5, 2022 at 22:31 UTC
f1b7df8ac8bd545d4329707761a81669b95c10e9
8 files changed
+12
-12
src/wix/WixToolset.Converters/ConverterExtensionCommandLine.cs
+1
-1
@@ -27,7 +27,7 @@ namespace WixToolset.Converters
27
Commands = new[]
28
{
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
}
32
};
33
}
src/wix/WixToolset.Converters/FormatCommand.cs
+1
-1
@@ -17,7 +17,7 @@ namespace WixToolset.Converters
17
18
public override CommandLineHelp GetCommandLineHelp()
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
{
22
Switches = new[]
23
{
src/wix/WixToolset.Core.Burn/CommandLine/BurnCommand.cs
+4
-4
@@ -33,10 +33,10 @@ namespace WixToolset.Core.Burn.CommandLine
33
{
34
Commands = new[]
35
{
36
- new CommandLineHelpCommand("detach", "Detaches the burn engine from a bundle so it can be signed."),
37
- new CommandLineHelpCommand("extract", "Extracts the internals of a bundle to a folder."),
38
- new CommandLineHelpCommand("reattach", "Reattaches a signed burn engine to a bundle."),
39
- new CommandLineHelpCommand("remotepayload", "Extracts the internals of a bundle."),
36
+ new CommandLineHelpCommand("detach", "Detach the Burn engine from a bundle so it can be signed."),
37
+ new CommandLineHelpCommand("extract", "Extract the internals of a bundle to a folder."),
38
+ new CommandLineHelpCommand("reattach", "Reattach a signed Burn engine to a bundle."),
39
+ new CommandLineHelpCommand("remotepayload", "Generate source code for a remote payload."),
40
}
41
};
42
}
src/wix/WixToolset.Core.Burn/CommandLine/DetachSubcommand.cs
+1
-1
@@ -31,7 +31,7 @@ namespace WixToolset.Core.Burn.CommandLine
31
32
public override CommandLineHelp GetCommandLineHelp()
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
{
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."),
src/wix/WixToolset.Core.ExtensionCache/ExtensionCacheManagerExtensionCommandLine.cs
+1
-1
@@ -24,7 +24,7 @@ namespace WixToolset.Core.ExtensionCache
24
{
25
return new CommandLineHelp("Manage the extension cache.")
26
{
27
- Commands = new[] { new CommandLineHelpCommand("extension", "Manage extension cache.") }
27
+ Commands = new[] { new CommandLineHelpCommand("extension", "Manage WiX extension cache.") }
28
};
29
}
30
src/wix/WixToolset.Core.WindowsInstaller/WindowsInstallerExtensionCommandLine.cs
+1
-1
@@ -27,7 +27,7 @@ namespace WixToolset.Core.WindowsInstaller
27
{
28
Commands = new[]
29
{
30
- new CommandLineHelpCommand("msi", "Windows Installer specialized operations."),
30
+ new CommandLineHelpCommand("msi", "Specialized operations for manipulating Windows Installer packages."),
31
}
32
};
33
}
src/wix/WixToolset.Core/CommandLine/BuildCommand.cs
+1
-1
@@ -58,7 +58,7 @@ namespace WixToolset.Core.CommandLine
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."),
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."),
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."),
src/wix/WixToolset.Core/CommandLine/HelpCommand.cs
+2
-2
@@ -35,12 +35,12 @@ namespace WixToolset.Core.CommandLine
35
Switches = new[]
36
{
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."),
40
},
41
Commands = new[]
42
{
43
- new CommandLineHelpCommand("build", "Build a wixlib, package or bundle.")
43
+ new CommandLineHelpCommand("build", "Build a wixlib, package, or bundle.")
44
},
45
Notes = "Run 'wix [command] -h' for more information on a command."
46
};