diff options
| author | Rob Mensching <rob@firegiant.com> | 2017-11-01 10:59:45 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2017-11-01 10:59:45 -0700 |
| commit | 2bb37beda887d120a0ddabf874ad25357101faa1 (patch) | |
| tree | c35e97b03274b86cfc9ff7fd2caeee211165a140 /src/WixToolset.Core.WindowsInstaller/MstBackend.cs | |
| parent | df7413aeed3aea3425dff20ae0c8b1be3a3ab525 (diff) | |
| download | wix-2bb37beda887d120a0ddabf874ad25357101faa1.tar.gz wix-2bb37beda887d120a0ddabf874ad25357101faa1.tar.bz2 wix-2bb37beda887d120a0ddabf874ad25357101faa1.zip | |
Update to WiX Intermediate Representation
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(); |
