diff options
Diffstat (limited to 'src/WixToolset.Core/ResolveContext.cs')
-rw-r--r-- | src/WixToolset.Core/ResolveContext.cs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/WixToolset.Core/ResolveContext.cs b/src/WixToolset.Core/ResolveContext.cs new file mode 100644 index 00000000..6d7b9df1 --- /dev/null +++ b/src/WixToolset.Core/ResolveContext.cs | |||
@@ -0,0 +1,32 @@ | |||
1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | ||
2 | |||
3 | namespace WixToolset.Core | ||
4 | { | ||
5 | using System; | ||
6 | using System.Collections.Generic; | ||
7 | using WixToolset.Data; | ||
8 | using WixToolset.Extensibility; | ||
9 | using WixToolset.Extensibility.Services; | ||
10 | |||
11 | public class ResolveContext : IResolveContext | ||
12 | { | ||
13 | internal ResolveContext(IServiceProvider serviceProvider) | ||
14 | { | ||
15 | this.ServiceProvider = serviceProvider; | ||
16 | } | ||
17 | |||
18 | public IServiceProvider ServiceProvider { get; } | ||
19 | |||
20 | public IMessaging Messaging { get; set; } | ||
21 | |||
22 | public IEnumerable<BindPath> BindPaths { get; set; } | ||
23 | |||
24 | public IEnumerable<IResolverExtension> Extensions { get; set; } | ||
25 | |||
26 | public string IntermediateFolder { get; set; } | ||
27 | |||
28 | public Intermediate IntermediateRepresentation { get; set; } | ||
29 | |||
30 | public IBindVariableResolver WixVariableResolver { get; set; } | ||
31 | } | ||
32 | } | ||