aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/CommandLine
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-10-23 17:32:44 -0400
committerBob Arnson <bob@firegiant.com>2020-10-24 19:44:44 -0400
commit8b5505cd13367d48bce4ec8a6018e370ed3755b1 (patch)
tree97fb50229aff208bce91b160d11ffeee9b1e783a /src/WixToolset.Core/CommandLine
parent95188080c8005c01c39bb071459b36f8660bcfcd (diff)
downloadwix-8b5505cd13367d48bce4ec8a6018e370ed3755b1.tar.gz
wix-8b5505cd13367d48bce4ec8a6018e370ed3755b1.tar.bz2
wix-8b5505cd13367d48bce4ec8a6018e370ed3755b1.zip
Reorganize Product/Package to Package/SummaryInformation.
Diffstat (limited to 'src/WixToolset.Core/CommandLine')
-rw-r--r--src/WixToolset.Core/CommandLine/DecompileCommand.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/WixToolset.Core/CommandLine/DecompileCommand.cs b/src/WixToolset.Core/CommandLine/DecompileCommand.cs
index fc77a7b4..bce7a5a4 100644
--- a/src/WixToolset.Core/CommandLine/DecompileCommand.cs
+++ b/src/WixToolset.Core/CommandLine/DecompileCommand.cs
@@ -53,6 +53,7 @@ namespace WixToolset.Core.CommandLine
53 53
54 if (!this.Messaging.EncounteredError) 54 if (!this.Messaging.EncounteredError)
55 { 55 {
56 Directory.CreateDirectory(Path.GetDirectoryName(context.OutputPath));
56 result.Document.Save(context.OutputPath, SaveOptions.OmitDuplicateNamespaces); 57 result.Document.Save(context.OutputPath, SaveOptions.OmitDuplicateNamespaces);
57 } 58 }
58 } 59 }