diff options
Diffstat (limited to 'src/WixToolset.Core/Compiler_EmbeddedUI.cs')
-rw-r--r-- | src/WixToolset.Core/Compiler_EmbeddedUI.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/WixToolset.Core/Compiler_EmbeddedUI.cs b/src/WixToolset.Core/Compiler_EmbeddedUI.cs index 847ee2a8..4353e3cd 100644 --- a/src/WixToolset.Core/Compiler_EmbeddedUI.cs +++ b/src/WixToolset.Core/Compiler_EmbeddedUI.cs | |||
@@ -6,7 +6,7 @@ namespace WixToolset.Core | |||
6 | using System.IO; | 6 | using System.IO; |
7 | using System.Xml.Linq; | 7 | using System.Xml.Linq; |
8 | using WixToolset.Data; | 8 | using WixToolset.Data; |
9 | using WixToolset.Data.Tuples; | 9 | using WixToolset.Data.Symbols; |
10 | using WixToolset.Data.WindowsInstaller; | 10 | using WixToolset.Data.WindowsInstaller; |
11 | 11 | ||
12 | /// <summary> | 12 | /// <summary> |
@@ -43,7 +43,7 @@ namespace WixToolset.Core | |||
43 | } | 43 | } |
44 | source = this.Core.GetAttributeIdentifierValue(sourceLineNumbers, attrib); | 44 | source = this.Core.GetAttributeIdentifierValue(sourceLineNumbers, attrib); |
45 | type = 0x2; | 45 | type = 0x2; |
46 | this.Core.CreateSimpleReference(sourceLineNumbers, TupleDefinitions.Binary, source); // add a reference to the appropriate Binary | 46 | this.Core.CreateSimpleReference(sourceLineNumbers, SymbolDefinitions.Binary, source); // add a reference to the appropriate Binary |
47 | break; | 47 | break; |
48 | case "CommandLine": | 48 | case "CommandLine": |
49 | commandLine = this.Core.GetAttributeValue(sourceLineNumbers, attrib); | 49 | commandLine = this.Core.GetAttributeValue(sourceLineNumbers, attrib); |
@@ -58,7 +58,7 @@ namespace WixToolset.Core | |||
58 | } | 58 | } |
59 | source = this.Core.GetAttributeIdentifierValue(sourceLineNumbers, attrib); | 59 | source = this.Core.GetAttributeIdentifierValue(sourceLineNumbers, attrib); |
60 | type = 0x12; | 60 | type = 0x12; |
61 | this.Core.CreateSimpleReference(sourceLineNumbers, TupleDefinitions.File, source); // add a reference to the appropriate File | 61 | this.Core.CreateSimpleReference(sourceLineNumbers, SymbolDefinitions.File, source); // add a reference to the appropriate File |
62 | break; | 62 | break; |
63 | case "PropertySource": | 63 | case "PropertySource": |
64 | if (null != source) | 64 | if (null != source) |
@@ -92,7 +92,7 @@ namespace WixToolset.Core | |||
92 | 92 | ||
93 | if (!this.Core.EncounteredError) | 93 | if (!this.Core.EncounteredError) |
94 | { | 94 | { |
95 | this.Core.AddTuple(new MsiEmbeddedChainerTuple(sourceLineNumbers, id) | 95 | this.Core.AddSymbol(new MsiEmbeddedChainerSymbol(sourceLineNumbers, id) |
96 | { | 96 | { |
97 | Condition = condition, | 97 | Condition = condition, |
98 | CommandLine = commandLine, | 98 | CommandLine = commandLine, |
@@ -318,7 +318,7 @@ namespace WixToolset.Core | |||
318 | 318 | ||
319 | if (!this.Core.EncounteredError) | 319 | if (!this.Core.EncounteredError) |
320 | { | 320 | { |
321 | this.Core.AddTuple(new MsiEmbeddedUITuple(sourceLineNumbers, id) | 321 | this.Core.AddSymbol(new MsiEmbeddedUISymbol(sourceLineNumbers, id) |
322 | { | 322 | { |
323 | FileName = name, | 323 | FileName = name, |
324 | EntryPoint = true, | 324 | EntryPoint = true, |
@@ -405,7 +405,7 @@ namespace WixToolset.Core | |||
405 | 405 | ||
406 | if (!this.Core.EncounteredError) | 406 | if (!this.Core.EncounteredError) |
407 | { | 407 | { |
408 | this.Core.AddTuple(new MsiEmbeddedUITuple(sourceLineNumbers, id) | 408 | this.Core.AddSymbol(new MsiEmbeddedUISymbol(sourceLineNumbers, id) |
409 | { | 409 | { |
410 | FileName = name, | 410 | FileName = name, |
411 | Source = sourceFile | 411 | Source = sourceFile |