diff options
Diffstat (limited to 'src/WixToolset.Extensibility/ILayoutContext.cs')
-rw-r--r-- | src/WixToolset.Extensibility/ILayoutContext.cs | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/ILayoutContext.cs b/src/WixToolset.Extensibility/ILayoutContext.cs new file mode 100644 index 00000000..5b4f014d --- /dev/null +++ b/src/WixToolset.Extensibility/ILayoutContext.cs | |||
@@ -0,0 +1,34 @@ | |||
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.Extensibility | ||
4 | { | ||
5 | using System; | ||
6 | using System.Collections.Generic; | ||
7 | using WixToolset.Data.Bind; | ||
8 | using WixToolset.Extensibility.Services; | ||
9 | |||
10 | public interface ILayoutContext | ||
11 | { | ||
12 | IServiceProvider ServiceProvider { get; } | ||
13 | |||
14 | IMessaging Messaging { get; set; } | ||
15 | |||
16 | IEnumerable<ILayoutExtension> Extensions { get; set; } | ||
17 | |||
18 | IEnumerable<IFileSystemExtension> FileSystemExtensions { get; set; } | ||
19 | |||
20 | IEnumerable<string> ContentFilePaths { get; set; } | ||
21 | |||
22 | IEnumerable<FileTransfer> FileTransfers { get; set; } | ||
23 | |||
24 | string OutputPdbPath { get; set; } | ||
25 | |||
26 | string ContentsFile { get; set; } | ||
27 | |||
28 | string OutputsFile { get; set; } | ||
29 | |||
30 | string BuiltOutputsFile { get; set; } | ||
31 | |||
32 | bool SuppressAclReset { get; set; } | ||
33 | } | ||
34 | } | ||