diff options
author | Rob Mensching <rob@firegiant.com> | 2019-03-01 11:12:52 -0800 |
---|---|---|
committer | Rob Mensching <rob@robmensching.com> | 2019-03-01 11:15:40 -0800 |
commit | 5392cf57c09bddde7157e5b26c5c2a013f819ead (patch) | |
tree | 96063a49293bd9eea122218e770b52d3c20812f2 /src/WixToolset.Core/Decompiler.cs | |
parent | a4f5a5a042c00254607fbecdf132a2e2a91a1bdd (diff) | |
download | wix-5392cf57c09bddde7157e5b26c5c2a013f819ead.tar.gz wix-5392cf57c09bddde7157e5b26c5c2a013f819ead.tar.bz2 wix-5392cf57c09bddde7157e5b26c5c2a013f819ead.zip |
Integrate interface-only WixToolset.Extensibility change
Diffstat (limited to 'src/WixToolset.Core/Decompiler.cs')
-rw-r--r-- | src/WixToolset.Core/Decompiler.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core/Decompiler.cs b/src/WixToolset.Core/Decompiler.cs index 685722a8..c0ca200b 100644 --- a/src/WixToolset.Core/Decompiler.cs +++ b/src/WixToolset.Core/Decompiler.cs | |||
@@ -19,7 +19,7 @@ namespace WixToolset.Core | |||
19 | 19 | ||
20 | public IServiceProvider ServiceProvider { get; } | 20 | public IServiceProvider ServiceProvider { get; } |
21 | 21 | ||
22 | public DecompileResult Decompile(IDecompileContext context) | 22 | public IDecompileResult Decompile(IDecompileContext context) |
23 | { | 23 | { |
24 | // Pre-decompile. | 24 | // Pre-decompile. |
25 | // | 25 | // |
@@ -45,7 +45,7 @@ namespace WixToolset.Core | |||
45 | return result; | 45 | return result; |
46 | } | 46 | } |
47 | 47 | ||
48 | private DecompileResult BackendDecompile(IDecompileContext context) | 48 | private IDecompileResult BackendDecompile(IDecompileContext context) |
49 | { | 49 | { |
50 | var extensionManager = context.ServiceProvider.GetService<IExtensionManager>(); | 50 | var extensionManager = context.ServiceProvider.GetService<IExtensionManager>(); |
51 | 51 | ||