From 155a6e96346e0cb3d9ab6f5372fa29b46ebaee89 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Tue, 19 Dec 2017 12:25:40 -0800 Subject: Integrate simplified message handling --- src/WixToolset.Core.WindowsInstaller/UnbindContext.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/WixToolset.Core.WindowsInstaller/UnbindContext.cs') diff --git a/src/WixToolset.Core.WindowsInstaller/UnbindContext.cs b/src/WixToolset.Core.WindowsInstaller/UnbindContext.cs index ed55f312..ff71bea4 100644 --- a/src/WixToolset.Core.WindowsInstaller/UnbindContext.cs +++ b/src/WixToolset.Core.WindowsInstaller/UnbindContext.cs @@ -2,12 +2,15 @@ namespace WixToolset.Core { - using WixToolset.Data; + using System; using WixToolset.Extensibility; + using WixToolset.Extensibility.Services; internal class UnbindContext : IUnbindContext { - public Messaging Messaging { get; } = Messaging.Instance; + public IServiceProvider ServiceProvider { get; } + + public IMessaging Messaging { get; set; } public string ExportBasePath { get; set; } -- cgit v1.2.3-55-g6feb