aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Decompile
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2018-12-05 18:30:58 -0500
committerBob Arnson <bob@firegiant.com>2018-12-05 20:15:30 -0500
commit8510c8891b2db107b67a94efe1011e1b513d91b4 (patch)
tree4783ca03660ea801826e7a119067db156a6c3243 /src/WixToolset.Core.WindowsInstaller/Decompile
parent135dad52ea93d65e9cfe1490f34d12bec510c836 (diff)
downloadwix-8510c8891b2db107b67a94efe1011e1b513d91b4.tar.gz
wix-8510c8891b2db107b67a94efe1011e1b513d91b4.tar.bz2
wix-8510c8891b2db107b67a94efe1011e1b513d91b4.zip
Extract files when using `IDecompileContext.TreatProductAsModule`.
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Decompile')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Decompile/DecompileMsiOrMsmCommand.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Decompile/DecompileMsiOrMsmCommand.cs b/src/WixToolset.Core.WindowsInstaller/Decompile/DecompileMsiOrMsmCommand.cs
index 80f37eb2..6ca1d89f 100644
--- a/src/WixToolset.Core.WindowsInstaller/Decompile/DecompileMsiOrMsmCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Decompile/DecompileMsiOrMsmCommand.cs
@@ -44,7 +44,7 @@ namespace WixToolset.Core.WindowsInstaller.Unbind
44 // extract the files from the cabinets 44 // extract the files from the cabinets
45 if (!String.IsNullOrEmpty(this.Context.ExtractFolder) && !this.Context.SuppressExtractCabinets) 45 if (!String.IsNullOrEmpty(this.Context.ExtractFolder) && !this.Context.SuppressExtractCabinets)
46 { 46 {
47 var extractCommand = new ExtractCabinetsCommand(output, database, this.Context.DecompilePath, this.Context.ExtractFolder, this.Context.IntermediateFolder); 47 var extractCommand = new ExtractCabinetsCommand(output, database, this.Context.DecompilePath, this.Context.ExtractFolder, this.Context.IntermediateFolder, this.Context.TreatProductAsModule);
48 extractCommand.Execute(); 48 extractCommand.Execute();
49 49
50 result.ExtractedFilePaths = extractCommand.ExtractedFiles; 50 result.ExtractedFilePaths = extractCommand.ExtractedFiles;