diff options
Diffstat (limited to 'src/WixToolset.Core/LayoutContext.cs')
-rw-r--r-- | src/WixToolset.Core/LayoutContext.cs | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/WixToolset.Core/LayoutContext.cs b/src/WixToolset.Core/LayoutContext.cs new file mode 100644 index 00000000..24f171a9 --- /dev/null +++ b/src/WixToolset.Core/LayoutContext.cs | |||
@@ -0,0 +1,40 @@ | |||
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.Bind; | ||
8 | using WixToolset.Extensibility; | ||
9 | using WixToolset.Extensibility.Services; | ||
10 | |||
11 | public class LayoutContext : ILayoutContext | ||
12 | { | ||
13 | internal LayoutContext(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<ILayoutExtension> Extensions { get; set; } | ||
23 | |||
24 | public IEnumerable<IFileSystemExtension> FileSystemExtensions { get; set; } | ||
25 | |||
26 | public IEnumerable<FileTransfer> FileTransfers { get; set; } | ||
27 | |||
28 | public IEnumerable<string> ContentFilePaths { get; set; } | ||
29 | |||
30 | public string OutputPdbPath { get; set; } | ||
31 | |||
32 | public string ContentsFile { get; set; } | ||
33 | |||
34 | public string OutputsFile { get; set; } | ||
35 | |||
36 | public string BuiltOutputsFile { get; set; } | ||
37 | |||
38 | public bool SuppressAclReset { get; set; } | ||
39 | } | ||
40 | } | ||