aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/WindowsInstaller/Table.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-10-25 00:23:42 -0700
committerRob Mensching <rob@firegiant.com>2019-10-25 00:25:53 -0700
commit6c1ae2593faab59e1a01c96794e0835a6fcd0626 (patch)
treec15fcb9a1f1c5bec846ba61f1f3dcd9a152bf701 /src/WixToolset.Data/WindowsInstaller/Table.cs
parent0078364515ba1f7570f43d47e43bd359918cafd0 (diff)
downloadwix-6c1ae2593faab59e1a01c96794e0835a6fcd0626.tar.gz
wix-6c1ae2593faab59e1a01c96794e0835a6fcd0626.tar.bz2
wix-6c1ae2593faab59e1a01c96794e0835a6fcd0626.zip
Implement WixOutput with support for multiple streams of data
Diffstat (limited to 'src/WixToolset.Data/WindowsInstaller/Table.cs')
-rw-r--r--src/WixToolset.Data/WindowsInstaller/Table.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Data/WindowsInstaller/Table.cs b/src/WixToolset.Data/WindowsInstaller/Table.cs
index acb4b6fe..c7f2c8f2 100644
--- a/src/WixToolset.Data/WindowsInstaller/Table.cs
+++ b/src/WixToolset.Data/WindowsInstaller/Table.cs
@@ -291,7 +291,7 @@ namespace WixToolset.Data.WindowsInstaller
291 throw new ArgumentNullException("writer"); 291 throw new ArgumentNullException("writer");
292 } 292 }
293 293
294 writer.WriteStartElement("table", Intermediate.XmlNamespaceUri); 294 writer.WriteStartElement("table", Output.XmlNamespaceUri);
295 writer.WriteAttributeString("name", this.Name); 295 writer.WriteAttributeString("name", this.Name);
296 296
297 if (TableOperation.None != this.Operation) 297 if (TableOperation.None != this.Operation)