aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/LinkContext.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/LinkContext.cs')
-rw-r--r--src/WixToolset.Core/LinkContext.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/WixToolset.Core/LinkContext.cs b/src/WixToolset.Core/LinkContext.cs
index 528d0f0f..b99bb9c4 100644
--- a/src/WixToolset.Core/LinkContext.cs
+++ b/src/WixToolset.Core/LinkContext.cs
@@ -8,7 +8,6 @@ namespace WixToolset.Core
8 using WixToolset.Data; 8 using WixToolset.Data;
9 using WixToolset.Extensibility; 9 using WixToolset.Extensibility;
10 using WixToolset.Extensibility.Data; 10 using WixToolset.Extensibility.Data;
11 using WixToolset.Extensibility.Services;
12 11
13 internal class LinkContext : ILinkContext 12 internal class LinkContext : ILinkContext
14 { 13 {
@@ -19,13 +18,13 @@ namespace WixToolset.Core
19 18
20 public IServiceProvider ServiceProvider { get; } 19 public IServiceProvider ServiceProvider { get; }
21 20
22 public IEnumerable<ILinkerExtension> Extensions { get; set; } 21 public IReadOnlyCollection<ILinkerExtension> Extensions { get; set; }
23 22
24 public IEnumerable<IExtensionData> ExtensionData { get; set; } 23 public IReadOnlyCollection<IExtensionData> ExtensionData { get; set; }
25 24
26 public OutputType ExpectedOutputType { get; set; } 25 public OutputType ExpectedOutputType { get; set; }
27 26
28 public IEnumerable<Intermediate> Intermediates { get; set; } 27 public IReadOnlyCollection<Intermediate> Intermediates { get; set; }
29 28
30 public ISymbolDefinitionCreator SymbolDefinitionCreator { get; set; } 29 public ISymbolDefinitionCreator SymbolDefinitionCreator { get; set; }
31 30