diff options
Diffstat (limited to 'src/WixToolset.Core/WixToolsetServiceProvider.cs')
-rw-r--r-- | src/WixToolset.Core/WixToolsetServiceProvider.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/WixToolset.Core/WixToolsetServiceProvider.cs b/src/WixToolset.Core/WixToolsetServiceProvider.cs index 995daa89..74b312c6 100644 --- a/src/WixToolset.Core/WixToolsetServiceProvider.cs +++ b/src/WixToolset.Core/WixToolsetServiceProvider.cs | |||
@@ -42,6 +42,16 @@ namespace WixToolset.Core | |||
42 | return new BindContext(this); | 42 | return new BindContext(this); |
43 | } | 43 | } |
44 | 44 | ||
45 | if (serviceType == typeof(ILayoutContext)) | ||
46 | { | ||
47 | return new LayoutContext(this); | ||
48 | } | ||
49 | |||
50 | if (serviceType == typeof(IResolveContext)) | ||
51 | { | ||
52 | return new ResolveContext(this); | ||
53 | } | ||
54 | |||
45 | if (serviceType == typeof(IInscribeContext)) | 55 | if (serviceType == typeof(IInscribeContext)) |
46 | { | 56 | { |
47 | return new InscribeContext(this); | 57 | return new InscribeContext(this); |