diff options
author | Rob Mensching <rob@firegiant.com> | 2017-11-01 10:59:45 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2017-11-01 10:59:45 -0700 |
commit | 2bb37beda887d120a0ddabf874ad25357101faa1 (patch) | |
tree | c35e97b03274b86cfc9ff7fd2caeee211165a140 /src/WixToolset.Core/Bind/DelayedField.cs | |
parent | df7413aeed3aea3425dff20ae0c8b1be3a3ab525 (diff) | |
download | wix-2bb37beda887d120a0ddabf874ad25357101faa1.tar.gz wix-2bb37beda887d120a0ddabf874ad25357101faa1.tar.bz2 wix-2bb37beda887d120a0ddabf874ad25357101faa1.zip |
Update to WiX Intermediate Representation
Diffstat (limited to 'src/WixToolset.Core/Bind/DelayedField.cs')
-rw-r--r-- | src/WixToolset.Core/Bind/DelayedField.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Core/Bind/DelayedField.cs b/src/WixToolset.Core/Bind/DelayedField.cs index 6c56f27c..8b761b94 100644 --- a/src/WixToolset.Core/Bind/DelayedField.cs +++ b/src/WixToolset.Core/Bind/DelayedField.cs | |||
@@ -16,7 +16,7 @@ namespace WixToolset.Core.Bind | |||
16 | /// </summary> | 16 | /// </summary> |
17 | /// <param name="row">Row for the field.</param> | 17 | /// <param name="row">Row for the field.</param> |
18 | /// <param name="field">Field needing further resolution.</param> | 18 | /// <param name="field">Field needing further resolution.</param> |
19 | public DelayedField(Row row, Field field) | 19 | public DelayedField(IntermediateTuple row, IntermediateField field) |
20 | { | 20 | { |
21 | this.Row = row; | 21 | this.Row = row; |
22 | this.Field = field; | 22 | this.Field = field; |
@@ -25,11 +25,11 @@ namespace WixToolset.Core.Bind | |||
25 | /// <summary> | 25 | /// <summary> |
26 | /// The row containing the field. | 26 | /// The row containing the field. |
27 | /// </summary> | 27 | /// </summary> |
28 | public Row Row { get; } | 28 | public IntermediateTuple Row { get; } |
29 | 29 | ||
30 | /// <summary> | 30 | /// <summary> |
31 | /// The field needing further resolving. | 31 | /// The field needing further resolving. |
32 | /// </summary> | 32 | /// </summary> |
33 | public Field Field { get; } | 33 | public IntermediateField Field { get; } |
34 | } | 34 | } |
35 | } | 35 | } |