aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindMsiOrMsmCommand.cs
diff options
context:
space:
mode:
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}