aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/WindowsInstaller/ObjectField.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/ObjectField.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/ObjectField.cs')
-rw-r--r--src/WixToolset.Data/WindowsInstaller/ObjectField.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Data/WindowsInstaller/ObjectField.cs b/src/WixToolset.Data/WindowsInstaller/ObjectField.cs
index 016693f5..4e654dde 100644
--- a/src/WixToolset.Data/WindowsInstaller/ObjectField.cs
+++ b/src/WixToolset.Data/WindowsInstaller/ObjectField.cs
@@ -130,7 +130,7 @@ namespace WixToolset.Data.WindowsInstaller
130 /// <param name="writer">XmlWriter where the Field should persist itself as XML.</param> 130 /// <param name="writer">XmlWriter where the Field should persist itself as XML.</param>
131 internal override void Write(XmlWriter writer) 131 internal override void Write(XmlWriter writer)
132 { 132 {
133 writer.WriteStartElement("field", Intermediate.XmlNamespaceUri); 133 writer.WriteStartElement("field", Output.XmlNamespaceUri);
134 134
135 if (this.EmbeddedFileIndex.HasValue) 135 if (this.EmbeddedFileIndex.HasValue)
136 { 136 {