diff options
Diffstat (limited to 'src/wixext')
-rw-r--r-- | src/wixext/NetFxCompiler.cs | 3 | ||||
-rw-r--r-- | src/wixext/NetfxWindowsInstallerBackendExtension.cs | 9 |
2 files changed, 10 insertions, 2 deletions
diff --git a/src/wixext/NetFxCompiler.cs b/src/wixext/NetFxCompiler.cs index 06d48fe7..4916994e 100644 --- a/src/wixext/NetFxCompiler.cs +++ b/src/wixext/NetFxCompiler.cs | |||
@@ -7,6 +7,7 @@ namespace WixToolset.Netfx | |||
7 | using System.Xml.Linq; | 7 | using System.Xml.Linq; |
8 | using WixToolset.Data; | 8 | using WixToolset.Data; |
9 | using WixToolset.Extensibility; | 9 | using WixToolset.Extensibility; |
10 | using WixToolset.Extensibility.Data; | ||
10 | using WixToolset.Netfx.Tuples; | 11 | using WixToolset.Netfx.Tuples; |
11 | 12 | ||
12 | /// <summary> | 13 | /// <summary> |
@@ -144,7 +145,7 @@ namespace WixToolset.Netfx | |||
144 | 145 | ||
145 | this.ParseHelper.ParseForExtensionElements(this.Context.Extensions, intermediate, section, element); | 146 | this.ParseHelper.ParseForExtensionElements(this.Context.Extensions, intermediate, section, element); |
146 | 147 | ||
147 | this.ParseHelper.CreateSimpleReference(section, sourceLineNumbers, "CustomAction", "NetFxScheduleNativeImage"); | 148 | this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "NetFxScheduleNativeImage", this.Context.Platform, CustomActionPlatforms.X86); |
148 | 149 | ||
149 | if (!this.Messaging.EncounteredError) | 150 | if (!this.Messaging.EncounteredError) |
150 | { | 151 | { |
diff --git a/src/wixext/NetfxWindowsInstallerBackendExtension.cs b/src/wixext/NetfxWindowsInstallerBackendExtension.cs index df4e9839..1c7ce9b8 100644 --- a/src/wixext/NetfxWindowsInstallerBackendExtension.cs +++ b/src/wixext/NetfxWindowsInstallerBackendExtension.cs | |||
@@ -11,10 +11,11 @@ namespace WixToolset.Netfx | |||
11 | { | 11 | { |
12 | private static readonly TableDefinition[] Tables = new[] { | 12 | private static readonly TableDefinition[] Tables = new[] { |
13 | new TableDefinition( | 13 | new TableDefinition( |
14 | "Wix4NetFxNativeImage", | ||
14 | "NetFxNativeImage", | 15 | "NetFxNativeImage", |
15 | new[] | 16 | new[] |
16 | { | 17 | { |
17 | new ColumnDefinition("NetFxNativeImage", ColumnType.String, 72, true, false, ColumnCategory.Identifier, description: "The primary key, a non-localized token."), | 18 | new ColumnDefinition("Wix4NetFxNativeImage", ColumnType.String, 72, true, false, ColumnCategory.Identifier, description: "The primary key, a non-localized token."), |
18 | new ColumnDefinition("File_", ColumnType.String, 0, false, false, ColumnCategory.Identifier, keyTable:"File", keyColumn: 1, description: "The assembly for which a native image will be generated."), | 19 | new ColumnDefinition("File_", ColumnType.String, 0, false, false, ColumnCategory.Identifier, keyTable:"File", keyColumn: 1, description: "The assembly for which a native image will be generated."), |
19 | new ColumnDefinition("Priority", ColumnType.Number, 2, false, false, ColumnCategory.Integer, maxValue: 3, description: "The priority for generating this native image: 0 is syncronous, 1-3 represent various levels of queued generation."), | 20 | new ColumnDefinition("Priority", ColumnType.Number, 2, false, false, ColumnCategory.Integer, maxValue: 3, description: "The priority for generating this native image: 0 is syncronous, 1-3 represent various levels of queued generation."), |
20 | new ColumnDefinition("Attributes", ColumnType.Number, 4, false, false, ColumnCategory.Integer, maxValue: 2147483647, description: "Integer containing bit flags representing native image attributes."), | 21 | new ColumnDefinition("Attributes", ColumnType.Number, 4, false, false, ColumnCategory.Integer, maxValue: 2147483647, description: "Integer containing bit flags representing native image attributes."), |
@@ -25,5 +26,11 @@ namespace WixToolset.Netfx | |||
25 | }; | 26 | }; |
26 | 27 | ||
27 | public override IEnumerable<TableDefinition> TableDefinitions { get => Tables; } | 28 | public override IEnumerable<TableDefinition> TableDefinitions { get => Tables; } |
29 | |||
30 | public override bool TryAddTupleToOutput(IntermediateTuple tuple, WindowsInstallerData output) | ||
31 | { | ||
32 | var columnZeroIsId = tuple.Id != null; | ||
33 | return this.BackendHelper.TryAddTupleToOutputMatchingTableDefinitions(tuple, output, this.TableDefinitions, columnZeroIsId); | ||
34 | } | ||
28 | } | 35 | } |
29 | } | 36 | } |