aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/LayoutContext.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/LayoutContext.cs')
-rw-r--r--src/WixToolset.Core/LayoutContext.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Core/LayoutContext.cs b/src/WixToolset.Core/LayoutContext.cs
index deb5057f..4b8c7b99 100644
--- a/src/WixToolset.Core/LayoutContext.cs
+++ b/src/WixToolset.Core/LayoutContext.cs
@@ -17,13 +17,13 @@ namespace WixToolset.Core
17 17
18 public IServiceProvider ServiceProvider { get; } 18 public IServiceProvider ServiceProvider { get; }
19 19
20 public IEnumerable<ILayoutExtension> Extensions { get; set; } 20 public IReadOnlyCollection<ILayoutExtension> Extensions { get; set; }
21 21
22 public IEnumerable<IFileSystemExtension> FileSystemExtensions { get; set; } 22 public IReadOnlyCollection<IFileSystemExtension> FileSystemExtensions { get; set; }
23 23
24 public IEnumerable<IFileTransfer> FileTransfers { get; set; } 24 public IReadOnlyCollection<IFileTransfer> FileTransfers { get; set; }
25 25
26 public IEnumerable<ITrackedFile> TrackedFiles { get; set; } 26 public IReadOnlyCollection<ITrackedFile> TrackedFiles { get; set; }
27 27
28 public string IntermediateFolder { get; set; } 28 public string IntermediateFolder { get; set; }
29 29