diff options
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Unbind/UnbindTranformCommand.cs')
| -rw-r--r-- | src/WixToolset.Core.WindowsInstaller/Unbind/UnbindTranformCommand.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindTranformCommand.cs b/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindTranformCommand.cs index 70f751f5..2b018013 100644 --- a/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindTranformCommand.cs +++ b/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindTranformCommand.cs | |||
| @@ -13,11 +13,12 @@ namespace WixToolset.Core.WindowsInstaller.Unbind | |||
| 13 | using WixToolset.Data; | 13 | using WixToolset.Data; |
| 14 | using WixToolset.Data.WindowsInstaller; | 14 | using WixToolset.Data.WindowsInstaller; |
| 15 | using WixToolset.Extensibility; | 15 | using WixToolset.Extensibility; |
| 16 | using WixToolset.Extensibility.Services; | ||
| 16 | using WixToolset.Msi; | 17 | using WixToolset.Msi; |
| 17 | 18 | ||
| 18 | internal class UnbindTransformCommand | 19 | internal class UnbindTransformCommand |
| 19 | { | 20 | { |
| 20 | public UnbindTransformCommand(Messaging messaging, string transformFile, string exportBasePath, string intermediateFolder) | 21 | public UnbindTransformCommand(IMessaging messaging, string transformFile, string exportBasePath, string intermediateFolder) |
| 21 | { | 22 | { |
| 22 | this.Messaging = messaging; | 23 | this.Messaging = messaging; |
| 23 | this.TransformFile = transformFile; | 24 | this.TransformFile = transformFile; |
| @@ -27,7 +28,7 @@ namespace WixToolset.Core.WindowsInstaller.Unbind | |||
| 27 | this.TableDefinitions = WindowsInstallerStandardInternal.GetTableDefinitions(); | 28 | this.TableDefinitions = WindowsInstallerStandardInternal.GetTableDefinitions(); |
| 28 | } | 29 | } |
| 29 | 30 | ||
| 30 | private Messaging Messaging { get; } | 31 | private IMessaging Messaging { get; } |
| 31 | 32 | ||
| 32 | private string TransformFile { get; } | 33 | private string TransformFile { get; } |
| 33 | 34 | ||
| @@ -152,7 +153,7 @@ namespace WixToolset.Core.WindowsInstaller.Unbind | |||
| 152 | // this commonly happens when the transform was built | 153 | // this commonly happens when the transform was built |
| 153 | // against a database schema different from the internal | 154 | // against a database schema different from the internal |
| 154 | // table definitions | 155 | // table definitions |
| 155 | throw new WixException(WixErrors.TransformSchemaMismatch()); | 156 | throw new WixException(ErrorMessages.TransformSchemaMismatch()); |
| 156 | } | 157 | } |
| 157 | } | 158 | } |
| 158 | 159 | ||
