From 8510c8891b2db107b67a94efe1011e1b513d91b4 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Wed, 5 Dec 2018 18:30:58 -0500 Subject: Extract files when using `IDecompileContext.TreatProductAsModule`. --- .../Decompile/DecompileMsiOrMsmCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/WixToolset.Core.WindowsInstaller/Decompile') 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 // extract the files from the cabinets if (!String.IsNullOrEmpty(this.Context.ExtractFolder) && !this.Context.SuppressExtractCabinets) { - var extractCommand = new ExtractCabinetsCommand(output, database, this.Context.DecompilePath, this.Context.ExtractFolder, this.Context.IntermediateFolder); + var extractCommand = new ExtractCabinetsCommand(output, database, this.Context.DecompilePath, this.Context.ExtractFolder, this.Context.IntermediateFolder, this.Context.TreatProductAsModule); extractCommand.Execute(); result.ExtractedFilePaths = extractCommand.ExtractedFiles; -- cgit v1.2.3-55-g6feb