diff options
Diffstat (limited to 'src/WixToolset.Data/Symbols/WixBundleExePackageSymbol.cs')
-rw-r--r-- | src/WixToolset.Data/Symbols/WixBundleExePackageSymbol.cs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/WixToolset.Data/Symbols/WixBundleExePackageSymbol.cs b/src/WixToolset.Data/Symbols/WixBundleExePackageSymbol.cs index f377adca..8a8cff1b 100644 --- a/src/WixToolset.Data/Symbols/WixBundleExePackageSymbol.cs +++ b/src/WixToolset.Data/Symbols/WixBundleExePackageSymbol.cs | |||
@@ -16,7 +16,6 @@ namespace WixToolset.Data | |||
16 | new IntermediateFieldDefinition(nameof(WixBundleExePackageSymbolFields.RepairCommand), IntermediateFieldType.String), | 16 | new IntermediateFieldDefinition(nameof(WixBundleExePackageSymbolFields.RepairCommand), IntermediateFieldType.String), |
17 | new IntermediateFieldDefinition(nameof(WixBundleExePackageSymbolFields.UninstallCommand), IntermediateFieldType.String), | 17 | new IntermediateFieldDefinition(nameof(WixBundleExePackageSymbolFields.UninstallCommand), IntermediateFieldType.String), |
18 | new IntermediateFieldDefinition(nameof(WixBundleExePackageSymbolFields.ExeProtocol), IntermediateFieldType.String), | 18 | new IntermediateFieldDefinition(nameof(WixBundleExePackageSymbolFields.ExeProtocol), IntermediateFieldType.String), |
19 | new IntermediateFieldDefinition(nameof(WixBundleExePackageSymbolFields.RepairCondition), IntermediateFieldType.String), | ||
20 | }, | 19 | }, |
21 | typeof(WixBundleExePackageSymbol)); | 20 | typeof(WixBundleExePackageSymbol)); |
22 | } | 21 | } |
@@ -34,7 +33,6 @@ namespace WixToolset.Data.Symbols | |||
34 | RepairCommand, | 33 | RepairCommand, |
35 | UninstallCommand, | 34 | UninstallCommand, |
36 | ExeProtocol, | 35 | ExeProtocol, |
37 | RepairCondition, | ||
38 | } | 36 | } |
39 | 37 | ||
40 | [Flags] | 38 | [Flags] |
@@ -91,12 +89,6 @@ namespace WixToolset.Data.Symbols | |||
91 | set => this.Set((int)WixBundleExePackageSymbolFields.ExeProtocol, value); | 89 | set => this.Set((int)WixBundleExePackageSymbolFields.ExeProtocol, value); |
92 | } | 90 | } |
93 | 91 | ||
94 | public string RepairCondition | ||
95 | { | ||
96 | get => (string)this.Fields[(int)WixBundleExePackageSymbolFields.RepairCondition]; | ||
97 | set => this.Set((int)WixBundleExePackageSymbolFields.RepairCondition, value); | ||
98 | } | ||
99 | |||
100 | public bool Repairable => !String.IsNullOrEmpty(this.RepairCommand); | 92 | public bool Repairable => !String.IsNullOrEmpty(this.RepairCommand); |
101 | } | 93 | } |
102 | } | 94 | } |