diff options
author | Rob Mensching <rob@firegiant.com> | 2018-07-23 14:21:40 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2018-07-23 14:27:11 -0700 |
commit | 5a1afc9030a1fcc101b6bb52b576fbbfa3ad33c2 (patch) | |
tree | d409a2399bd831f16ecdb8e68947ea672dcd65d4 /src/WixToolset.Core/Binder.cs | |
parent | 2724cfee4c163f3297ee25edfd2372767cfd4945 (diff) | |
download | wix-5a1afc9030a1fcc101b6bb52b576fbbfa3ad33c2.tar.gz wix-5a1afc9030a1fcc101b6bb52b576fbbfa3ad33c2.tar.bz2 wix-5a1afc9030a1fcc101b6bb52b576fbbfa3ad33c2.zip |
Integrate Extensibility.Data namespace change from Extensibility repo
Diffstat (limited to 'src/WixToolset.Core/Binder.cs')
-rw-r--r-- | src/WixToolset.Core/Binder.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/WixToolset.Core/Binder.cs b/src/WixToolset.Core/Binder.cs index f112a214..23f1ba21 100644 --- a/src/WixToolset.Core/Binder.cs +++ b/src/WixToolset.Core/Binder.cs | |||
@@ -11,6 +11,7 @@ namespace WixToolset.Core | |||
11 | using WixToolset.Data.Bind; | 11 | using WixToolset.Data.Bind; |
12 | using WixToolset.Data.Tuples; | 12 | using WixToolset.Data.Tuples; |
13 | using WixToolset.Extensibility; | 13 | using WixToolset.Extensibility; |
14 | using WixToolset.Extensibility.Data; | ||
14 | using WixToolset.Extensibility.Services; | 15 | using WixToolset.Extensibility.Services; |
15 | 16 | ||
16 | /// <summary> | 17 | /// <summary> |
@@ -56,7 +57,6 @@ namespace WixToolset.Core | |||
56 | public BindResult Execute() | 57 | public BindResult Execute() |
57 | { | 58 | { |
58 | var context = this.ServiceProvider.GetService<IBindContext>(); | 59 | var context = this.ServiceProvider.GetService<IBindContext>(); |
59 | context.Messaging = this.ServiceProvider.GetService<IMessaging>(); | ||
60 | context.CabbingThreadCount = this.CabbingThreadCount; | 60 | context.CabbingThreadCount = this.CabbingThreadCount; |
61 | context.CabCachePath = this.CabCachePath; | 61 | context.CabCachePath = this.CabCachePath; |
62 | context.Codepage = this.Codepage; | 62 | context.Codepage = this.Codepage; |
@@ -72,7 +72,6 @@ namespace WixToolset.Core | |||
72 | context.SuppressIces = this.SuppressIces; | 72 | context.SuppressIces = this.SuppressIces; |
73 | context.SuppressValidation = this.SuppressValidation; | 73 | context.SuppressValidation = this.SuppressValidation; |
74 | 74 | ||
75 | |||
76 | // Prebind. | 75 | // Prebind. |
77 | // | 76 | // |
78 | foreach (var extension in context.Extensions) | 77 | foreach (var extension in context.Extensions) |