aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/WindowsInstaller/Rows
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/WindowsInstaller/Rows')
-rw-r--r--src/WixToolset.Data/WindowsInstaller/Rows/PropertyRow.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Data/WindowsInstaller/Rows/PropertyRow.cs b/src/WixToolset.Data/WindowsInstaller/Rows/PropertyRow.cs
index ad5197d9..3aba5de6 100644
--- a/src/WixToolset.Data/WindowsInstaller/Rows/PropertyRow.cs
+++ b/src/WixToolset.Data/WindowsInstaller/Rows/PropertyRow.cs
@@ -3,12 +3,12 @@
3namespace WixToolset.Data.WindowsInstaller.Rows 3namespace WixToolset.Data.WindowsInstaller.Rows
4{ 4{
5 /// <summary> 5 /// <summary>
6 /// Specialization of a row for the upgrade table. 6 /// Specialization of a row for the Property table.
7 /// </summary> 7 /// </summary>
8 public sealed class PropertyRow : Row 8 public sealed class PropertyRow : Row
9 { 9 {
10 /// <summary> 10 /// <summary>
11 /// Creates an Upgrade row that belongs to a table. 11 /// Creates an Property row that belongs to a table.
12 /// </summary> 12 /// </summary>
13 /// <param name="sourceLineNumbers">Original source lines for this row.</param> 13 /// <param name="sourceLineNumbers">Original source lines for this row.</param>
14 /// <param name="table">Table this Upgrade row belongs to and should get its column definitions from.</param> 14 /// <param name="table">Table this Upgrade row belongs to and should get its column definitions from.</param>
@@ -18,7 +18,7 @@ namespace WixToolset.Data.WindowsInstaller.Rows
18 } 18 }
19 19
20 /// <summary> 20 /// <summary>
21 /// Gets and sets the upgrade code for the row. 21 /// Gets and sets the property name for the row.
22 /// </summary> 22 /// </summary>
23 /// <value>Property identifier for the row.</value> 23 /// <value>Property identifier for the row.</value>
24 public string Property 24 public string Property
@@ -28,7 +28,7 @@ namespace WixToolset.Data.WindowsInstaller.Rows
28 } 28 }
29 29
30 /// <summary> 30 /// <summary>
31 /// Gets and sets the value for the row. 31 /// Gets and sets the property value for the row.
32 /// </summary> 32 /// </summary>
33 /// <value>Property value for the row.</value> 33 /// <value>Property value for the row.</value>
34 public string Value 34 public string Value