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/Unbind/UnbindMsiOrMsmCommand.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/Unbind/UnbindMsiOrMsmCommand.cs')
-rw-r--r-- | src/WixToolset.Core.WindowsInstaller/Unbind/UnbindMsiOrMsmCommand.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindMsiOrMsmCommand.cs b/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindMsiOrMsmCommand.cs index f04dcefe..ce3f1ff6 100644 --- a/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindMsiOrMsmCommand.cs +++ b/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindMsiOrMsmCommand.cs | |||
@@ -18,8 +18,9 @@ namespace WixToolset.Core.WindowsInstaller.Unbind | |||
18 | 18 | ||
19 | public IUnbindContext Context { get; } | 19 | public IUnbindContext Context { get; } |
20 | 20 | ||
21 | public Output Execute() | 21 | public Intermediate Execute() |
22 | { | 22 | { |
23 | #if REVISIT_FOR_PATCHING | ||
23 | Output output; | 24 | Output output; |
24 | 25 | ||
25 | try | 26 | try |
@@ -48,6 +49,8 @@ namespace WixToolset.Core.WindowsInstaller.Unbind | |||
48 | } | 49 | } |
49 | 50 | ||
50 | return output; | 51 | return output; |
52 | #endif | ||
53 | throw new NotImplementedException(); | ||
51 | } | 54 | } |
52 | } | 55 | } |
53 | } | 56 | } |