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