aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-12-18 17:55:28 -0600
committerSean Hall <r.sean.hall@gmail.com>2020-12-18 23:24:21 -0600
commit8d27ac8bd8eb8ec320714a0bc201b05728da2206 (patch)
tree7b7e7e25510fa23c84da6717d982af6b0f969075 /src/WixToolset.Data/WindowsInstaller/TableDefinition.cs
parent2baff8dcce00fea541028dc927f34eb57641e47d (diff)
downloadwix-8d27ac8bd8eb8ec320714a0bc201b05728da2206.tar.gz
wix-8d27ac8bd8eb8ec320714a0bc201b05728da2206.tar.bz2
wix-8d27ac8bd8eb8ec320714a0bc201b05728da2206.zip
Enable XML doc.
Diffstat (limited to 'src/WixToolset.Data/WindowsInstaller/TableDefinition.cs')
-rw-r--r--src/WixToolset.Data/WindowsInstaller/TableDefinition.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs b/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs
index 504c89ce..a7602d05 100644
--- a/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs
+++ b/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs
@@ -26,6 +26,7 @@ namespace WixToolset.Data.WindowsInstaller
26 /// <param name="columns">Column definitions for the table.</param> 26 /// <param name="columns">Column definitions for the table.</param>
27 /// <param name="unreal">Flag if table is unreal.</param> 27 /// <param name="unreal">Flag if table is unreal.</param>
28 /// <param name="symbolIdIsPrimaryKey">Whether the primary key is the id of the symbol definition associated with this table.</param> 28 /// <param name="symbolIdIsPrimaryKey">Whether the primary key is the id of the symbol definition associated with this table.</param>
29 /// <param name="strongRowType">The specialized type for the rows.</param>
29 public TableDefinition(string name, IntermediateSymbolDefinition symbolDefinition, IEnumerable<ColumnDefinition> columns, bool unreal = false, bool symbolIdIsPrimaryKey = false, Type strongRowType = null) 30 public TableDefinition(string name, IntermediateSymbolDefinition symbolDefinition, IEnumerable<ColumnDefinition> columns, bool unreal = false, bool symbolIdIsPrimaryKey = false, Type strongRowType = null)
30 { 31 {
31 this.Name = name; 32 this.Name = name;