diff options
Diffstat (limited to 'src/wix/WixToolset.Core.Burn/CommandLine/ExtractSubcommand.cs')
-rw-r--r-- | src/wix/WixToolset.Core.Burn/CommandLine/ExtractSubcommand.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wix/WixToolset.Core.Burn/CommandLine/ExtractSubcommand.cs b/src/wix/WixToolset.Core.Burn/CommandLine/ExtractSubcommand.cs index 1cab276b..a6660a06 100644 --- a/src/wix/WixToolset.Core.Burn/CommandLine/ExtractSubcommand.cs +++ b/src/wix/WixToolset.Core.Burn/CommandLine/ExtractSubcommand.cs | |||
@@ -33,7 +33,7 @@ namespace WixToolset.Core.Burn.CommandLine | |||
33 | 33 | ||
34 | public override CommandLineHelp GetCommandLineHelp() | 34 | public override CommandLineHelp GetCommandLineHelp() |
35 | { | 35 | { |
36 | return new CommandLineHelp("Extracts the internals of a bundle to a folder.", "burn extract [options] bundle.exe -o outputfolder ", new[] | 36 | return new CommandLineHelp("Extracts the contents of a bundle.", "burn extract [options] bundle.exe -o outputfolder", new[] |
37 | { | 37 | { |
38 | new CommandLineHelpSwitch("-intermediateFolder", "Optional working folder. If not specified %TMP% will be used."), | 38 | new CommandLineHelpSwitch("-intermediateFolder", "Optional working folder. If not specified %TMP% will be used."), |
39 | new CommandLineHelpSwitch("-outba", "-oba", "Folder to extract the bundle bootstrapper application to."), | 39 | new CommandLineHelpSwitch("-outba", "-oba", "Folder to extract the bundle bootstrapper application to."), |
@@ -68,7 +68,7 @@ namespace WixToolset.Core.Burn.CommandLine | |||
68 | try | 68 | try |
69 | { | 69 | { |
70 | if (!String.IsNullOrEmpty(this.ExtractContainersPath)) | 70 | if (!String.IsNullOrEmpty(this.ExtractContainersPath)) |
71 | { | 71 | { |
72 | reader.ExtractAttachedContainers(this.ExtractContainersPath, this.IntermediateFolder); | 72 | reader.ExtractAttachedContainers(this.ExtractContainersPath, this.IntermediateFolder); |
73 | } | 73 | } |
74 | } | 74 | } |
@@ -92,7 +92,7 @@ namespace WixToolset.Core.Burn.CommandLine | |||
92 | case "intermediatefolder": | 92 | case "intermediatefolder": |
93 | this.IntermediateFolder = parser.GetNextArgumentAsDirectoryOrError(argument); | 93 | this.IntermediateFolder = parser.GetNextArgumentAsDirectoryOrError(argument); |
94 | return true; | 94 | return true; |
95 | 95 | ||
96 | case "oba": | 96 | case "oba": |
97 | case "outba": | 97 | case "outba": |
98 | this.ExtractBootstrapperApplicationPath = parser.GetNextArgumentAsDirectoryOrError(argument); | 98 | this.ExtractBootstrapperApplicationPath = parser.GetNextArgumentAsDirectoryOrError(argument); |