diff options
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/MstBackend.cs')
-rw-r--r-- | src/WixToolset.Core.WindowsInstaller/MstBackend.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/MstBackend.cs b/src/WixToolset.Core.WindowsInstaller/MstBackend.cs index 66bc57ae..3e40a51f 100644 --- a/src/WixToolset.Core.WindowsInstaller/MstBackend.cs +++ b/src/WixToolset.Core.WindowsInstaller/MstBackend.cs | |||
@@ -14,6 +14,7 @@ namespace WixToolset.Core.WindowsInstaller | |||
14 | { | 14 | { |
15 | public BindResult Bind(IBindContext context) | 15 | public BindResult Bind(IBindContext context) |
16 | { | 16 | { |
17 | #if REVISIT_FOR_PATCHING | ||
17 | var command = new BindTransformCommand(); | 18 | var command = new BindTransformCommand(); |
18 | command.Extensions = context.Extensions; | 19 | command.Extensions = context.Extensions; |
19 | command.TempFilesLocation = context.IntermediateFolder; | 20 | command.TempFilesLocation = context.IntermediateFolder; |
@@ -22,6 +23,8 @@ namespace WixToolset.Core.WindowsInstaller | |||
22 | command.Execute(); | 23 | command.Execute(); |
23 | 24 | ||
24 | return new BindResult(Array.Empty<FileTransfer>(), Array.Empty<string>()); | 25 | return new BindResult(Array.Empty<FileTransfer>(), Array.Empty<string>()); |
26 | #endif | ||
27 | throw new NotImplementedException(); | ||
25 | } | 28 | } |
26 | 29 | ||
27 | public bool Inscribe(IInscribeContext context) | 30 | public bool Inscribe(IInscribeContext context) |
@@ -29,7 +32,7 @@ namespace WixToolset.Core.WindowsInstaller | |||
29 | throw new NotImplementedException(); | 32 | throw new NotImplementedException(); |
30 | } | 33 | } |
31 | 34 | ||
32 | public Output Unbind(IUnbindContext context) | 35 | public Intermediate Unbind(IUnbindContext context) |
33 | { | 36 | { |
34 | var command = new UnbindMsiOrMsmCommand(context); | 37 | var command = new UnbindMsiOrMsmCommand(context); |
35 | return command.Execute(); | 38 | return command.Execute(); |