aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/NetfxWindowsInstallerBackendExtension.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/NetfxWindowsInstallerBackendExtension.cs')
-rw-r--r--src/wixext/NetfxWindowsInstallerBackendExtension.cs18
1 files changed, 1 insertions, 17 deletions
diff --git a/src/wixext/NetfxWindowsInstallerBackendExtension.cs b/src/wixext/NetfxWindowsInstallerBackendExtension.cs
index 7e30d396..e1404c1a 100644
--- a/src/wixext/NetfxWindowsInstallerBackendExtension.cs
+++ b/src/wixext/NetfxWindowsInstallerBackendExtension.cs
@@ -8,22 +8,6 @@ namespace WixToolset.Netfx
8 8
9 public class NetfxWindowsInstallerBackendBinderExtension : BaseWindowsInstallerBackendBinderExtension 9 public class NetfxWindowsInstallerBackendBinderExtension : BaseWindowsInstallerBackendBinderExtension
10 { 10 {
11 private static readonly TableDefinition[] Tables = new[] { 11 public override IEnumerable<TableDefinition> TableDefinitions => NetfxTableDefinitions.All;
12 new TableDefinition(
13 "Wix4NetFxNativeImage",
14 "NetFxNativeImage",
15 new[]
16 {
17 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("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("File_Application", ColumnType.String, 72, false, true, ColumnCategory.Formatted, description: "The application which loads this assembly."),
22 new ColumnDefinition("Directory_ApplicationBase", ColumnType.String, 72, false, true, ColumnCategory.Formatted, description: "The directory containing the application which loads this assembly."),
23 }
24 ),
25 };
26
27 public override IEnumerable<TableDefinition> TableDefinitions { get => Tables; }
28 } 12 }
29} 13}