diff options
author | Rob Mensching <rob@firegiant.com> | 2019-05-12 15:56:22 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2019-05-12 23:25:04 -0700 |
commit | 83b04241472fdc93b0a3a7511479a1182ad5f4c0 (patch) | |
tree | 21f6d7e389201cf1a6b334b7496075d8e6108b48 /src/WixToolset.Core/CommandLine/DecompileCommand.cs | |
parent | 1a45fef205dcaa3d310faba5ea6a10828c3b62cf (diff) | |
download | wix-83b04241472fdc93b0a3a7511479a1182ad5f4c0.tar.gz wix-83b04241472fdc93b0a3a7511479a1182ad5f4c0.tar.bz2 wix-83b04241472fdc93b0a3a7511479a1182ad5f4c0.zip |
IExtensionManager.Create renamed to IExtensionManager.GetServices
Diffstat (limited to 'src/WixToolset.Core/CommandLine/DecompileCommand.cs')
-rw-r--r-- | src/WixToolset.Core/CommandLine/DecompileCommand.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/CommandLine/DecompileCommand.cs b/src/WixToolset.Core/CommandLine/DecompileCommand.cs index 3aa750c8..fbba3d9f 100644 --- a/src/WixToolset.Core/CommandLine/DecompileCommand.cs +++ b/src/WixToolset.Core/CommandLine/DecompileCommand.cs | |||
@@ -38,7 +38,7 @@ namespace WixToolset.Core.CommandLine | |||
38 | } | 38 | } |
39 | 39 | ||
40 | var context = this.ServiceProvider.GetService<IDecompileContext>(); | 40 | var context = this.ServiceProvider.GetService<IDecompileContext>(); |
41 | context.Extensions = this.ServiceProvider.GetService<IExtensionManager>().Create<IDecompilerExtension>(); | 41 | context.Extensions = this.ServiceProvider.GetService<IExtensionManager>().GetServices<IDecompilerExtension>(); |
42 | context.DecompilePath = this.commandLine.DecompileFilePath; | 42 | context.DecompilePath = this.commandLine.DecompileFilePath; |
43 | context.DecompileType = this.commandLine.CalculateDecompileType(); | 43 | context.DecompileType = this.commandLine.CalculateDecompileType(); |
44 | context.IntermediateFolder = this.commandLine.CalculateIntermedateFolder(); | 44 | context.IntermediateFolder = this.commandLine.CalculateIntermedateFolder(); |