aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindMsiOrMsmCommand.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-11-01 10:59:45 -0700
committerRob Mensching <rob@firegiant.com>2017-11-01 10:59:45 -0700
commit2bb37beda887d120a0ddabf874ad25357101faa1 (patch)
treec35e97b03274b86cfc9ff7fd2caeee211165a140 /src/WixToolset.Core.WindowsInstaller/Unbind/UnbindMsiOrMsmCommand.cs
parentdf7413aeed3aea3425dff20ae0c8b1be3a3ab525 (diff)
downloadwix-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.cs5
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}