aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Bind/DelayedField.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/Bind/DelayedField.cs')
-rw-r--r--src/WixToolset.Core/Bind/DelayedField.cs13
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
3namespace WixToolset.Bind 3namespace 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}