aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/LibraryContext.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/LibraryContext.cs')
-rw-r--r--src/WixToolset.Core/LibraryContext.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Core/LibraryContext.cs b/src/WixToolset.Core/LibraryContext.cs
index 62d4e70c..e701cadf 100644
--- a/src/WixToolset.Core/LibraryContext.cs
+++ b/src/WixToolset.Core/LibraryContext.cs
@@ -23,15 +23,15 @@ namespace WixToolset.Core
23 23
24 public bool BindFiles { get; set; } 24 public bool BindFiles { get; set; }
25 25
26 public IEnumerable<IBindPath> BindPaths { get; set; } 26 public IReadOnlyCollection<IBindPath> BindPaths { get; set; }
27 27
28 public IEnumerable<ILibrarianExtension> Extensions { get; set; } 28 public IReadOnlyCollection<ILibrarianExtension> Extensions { get; set; }
29 29
30 public string LibraryId { get; set; } 30 public string LibraryId { get; set; }
31 31
32 public IEnumerable<Localization> Localizations { get; set; } 32 public IReadOnlyCollection<Localization> Localizations { get; set; }
33 33
34 public IEnumerable<Intermediate> Intermediates { get; set; } 34 public IReadOnlyCollection<Intermediate> Intermediates { get; set; }
35 35
36 public CancellationToken CancellationToken { get; set; } 36 public CancellationToken CancellationToken { get; set; }
37 } 37 }