aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/Data/IBindContext.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Extensibility/Data/IBindContext.cs')
-rw-r--r--src/WixToolset.Extensibility/Data/IBindContext.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/WixToolset.Extensibility/Data/IBindContext.cs b/src/WixToolset.Extensibility/Data/IBindContext.cs
index f1977c01..d0c65683 100644
--- a/src/WixToolset.Extensibility/Data/IBindContext.cs
+++ b/src/WixToolset.Extensibility/Data/IBindContext.cs
@@ -35,27 +35,27 @@ namespace WixToolset.Extensibility.Data
35 /// <summary> 35 /// <summary>
36 /// Delayed fields that need to be resolved again. 36 /// Delayed fields that need to be resolved again.
37 /// </summary> 37 /// </summary>
38 IEnumerable<IDelayedField> DelayedFields { get; set; } 38 IReadOnlyCollection<IDelayedField> DelayedFields { get; set; }
39 39
40 /// <summary> 40 /// <summary>
41 /// Embedded files to extract. 41 /// Embedded files to extract.
42 /// </summary> 42 /// </summary>
43 IEnumerable<IExpectedExtractFile> ExpectedEmbeddedFiles { get; set; } 43 IReadOnlyCollection<IExpectedExtractFile> ExpectedEmbeddedFiles { get; set; }
44 44
45 /// <summary> 45 /// <summary>
46 /// Binder extensions. 46 /// Binder extensions.
47 /// </summary> 47 /// </summary>
48 IEnumerable<IBinderExtension> Extensions { get; set; } 48 IReadOnlyCollection<IBinderExtension> Extensions { get; set; }
49 49
50 /// <summary> 50 /// <summary>
51 /// File system extensions. 51 /// File system extensions.
52 /// </summary> 52 /// </summary>
53 IEnumerable<IFileSystemExtension> FileSystemExtensions { get; set; } 53 IReadOnlyCollection<IFileSystemExtension> FileSystemExtensions { get; set; }
54 54
55 /// <summary> 55 /// <summary>
56 /// Set of ICEs to execute. 56 /// Set of ICEs to execute.
57 /// </summary> 57 /// </summary>
58 IEnumerable<string> Ices { get; set; } 58 IReadOnlyCollection<string> Ices { get; set; }
59 59
60 /// <summary> 60 /// <summary>
61 /// Intermedaite folder. 61 /// Intermedaite folder.
@@ -100,7 +100,7 @@ namespace WixToolset.Extensibility.Data
100 /// <summary> 100 /// <summary>
101 /// Set of ICEs to skip. 101 /// Set of ICEs to skip.
102 /// </summary> 102 /// </summary>
103 IEnumerable<string> SuppressIces { get; set; } 103 IReadOnlyCollection<string> SuppressIces { get; set; }
104 104
105 /// <summary> 105 /// <summary>
106 /// Skip all ICEs. 106 /// Skip all ICEs.