diff options
author | Rob Mensching <rob@firegiant.com> | 2017-10-14 16:12:07 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2017-10-14 16:12:07 -0700 |
commit | dbde9e7104b907bbbaea17e21247d8cafc8b3a4c (patch) | |
tree | 0f5fbbb6fe12c6b2e5e622a0e18ce4c5b4eb2b96 /src/WixToolset.Core/Bind/DelayedField.cs | |
parent | fbf986eb97f68396797a89fc7d40dec07b775440 (diff) | |
download | wix-dbde9e7104b907bbbaea17e21247d8cafc8b3a4c.tar.gz wix-dbde9e7104b907bbbaea17e21247d8cafc8b3a4c.tar.bz2 wix-dbde9e7104b907bbbaea17e21247d8cafc8b3a4c.zip |
Massive refactoring to introduce the concept of IBackend
Diffstat (limited to 'src/WixToolset.Core/Bind/DelayedField.cs')
-rw-r--r-- | src/WixToolset.Core/Bind/DelayedField.cs | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/src/WixToolset.Core/Bind/DelayedField.cs b/src/WixToolset.Core/Bind/DelayedField.cs index 181ac3e3..6c56f27c 100644 --- a/src/WixToolset.Core/Bind/DelayedField.cs +++ b/src/WixToolset.Core/Bind/DelayedField.cs | |||
@@ -1,18 +1,15 @@ | |||
1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. |
2 | 2 | ||
3 | namespace WixToolset.Bind | 3 | namespace WixToolset.Core.Bind |
4 | { | 4 | { |
5 | using System; | ||
6 | using System.Collections.Generic; | ||
7 | using System.Linq; | ||
8 | using System.Text; | ||
9 | using WixToolset.Data; | 5 | using WixToolset.Data; |
6 | using WixToolset.Extensibility; | ||
10 | 7 | ||
11 | /// <summary> | 8 | /// <summary> |
12 | /// Structure used to hold a row and field that contain binder variables, which need to be resolved | 9 | /// Structure used to hold a row and field that contain binder variables, which need to be resolved |
13 | /// later, once the files have been resolved. | 10 | /// later, once the files have been resolved. |
14 | /// </summary> | 11 | /// </summary> |
15 | internal class DelayedField | 12 | internal class DelayedField : IDelayedField |
16 | { | 13 | { |
17 | /// <summary> | 14 | /// <summary> |
18 | /// Basic constructor for struct | 15 | /// Basic constructor for struct |
@@ -28,11 +25,11 @@ namespace WixToolset.Bind | |||
28 | /// <summary> | 25 | /// <summary> |
29 | /// The row containing the field. | 26 | /// The row containing the field. |
30 | /// </summary> | 27 | /// </summary> |
31 | public Row Row { get; private set; } | 28 | public Row Row { get; } |
32 | 29 | ||
33 | /// <summary> | 30 | /// <summary> |
34 | /// The field needing further resolving. | 31 | /// The field needing further resolving. |
35 | /// </summary> | 32 | /// </summary> |
36 | public Field Field { get; private set; } | 33 | public Field Field { get; } |
37 | } | 34 | } |
38 | } | 35 | } |