diff options
Diffstat (limited to 'src/api')
| -rw-r--r-- | src/api/wix/WixToolset.Data/Symbols/WixComponentGroupSymbol.cs | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/src/api/wix/WixToolset.Data/Symbols/WixComponentGroupSymbol.cs b/src/api/wix/WixToolset.Data/Symbols/WixComponentGroupSymbol.cs index 4dd5a3b5..e000864f 100644 --- a/src/api/wix/WixToolset.Data/Symbols/WixComponentGroupSymbol.cs +++ b/src/api/wix/WixToolset.Data/Symbols/WixComponentGroupSymbol.cs | |||
| @@ -10,7 +10,8 @@ namespace WixToolset.Data | |||
| 10 | SymbolDefinitionType.WixComponentGroup, | 10 | SymbolDefinitionType.WixComponentGroup, |
| 11 | new[] | 11 | new[] |
| 12 | { | 12 | { |
| 13 | new IntermediateFieldDefinition(nameof(WixComponentGroupSymbolFields.WixComponentGroup), IntermediateFieldType.String), | 13 | new IntermediateFieldDefinition(nameof(WixComponentGroupSymbolFields.DirectoryRef), IntermediateFieldType.String), |
| 14 | new IntermediateFieldDefinition(nameof(WixComponentGroupSymbolFields.Source), IntermediateFieldType.String), | ||
| 14 | }, | 15 | }, |
| 15 | typeof(WixComponentGroupSymbol)); | 16 | typeof(WixComponentGroupSymbol)); |
| 16 | } | 17 | } |
| @@ -20,7 +21,8 @@ namespace WixToolset.Data.Symbols | |||
| 20 | { | 21 | { |
| 21 | public enum WixComponentGroupSymbolFields | 22 | public enum WixComponentGroupSymbolFields |
| 22 | { | 23 | { |
| 23 | WixComponentGroup, | 24 | DirectoryRef, |
| 25 | Source, | ||
| 24 | } | 26 | } |
| 25 | 27 | ||
| 26 | public class WixComponentGroupSymbol : IntermediateSymbol | 28 | public class WixComponentGroupSymbol : IntermediateSymbol |
| @@ -35,10 +37,16 @@ namespace WixToolset.Data.Symbols | |||
| 35 | 37 | ||
| 36 | public IntermediateField this[WixComponentGroupSymbolFields index] => this.Fields[(int)index]; | 38 | public IntermediateField this[WixComponentGroupSymbolFields index] => this.Fields[(int)index]; |
| 37 | 39 | ||
| 38 | public string WixComponentGroup | 40 | public string DirectoryRef |
| 39 | { | 41 | { |
| 40 | get => (string)this.Fields[(int)WixComponentGroupSymbolFields.WixComponentGroup]; | 42 | get => (string)this.Fields[(int)WixComponentGroupSymbolFields.DirectoryRef]; |
| 41 | set => this.Set((int)WixComponentGroupSymbolFields.WixComponentGroup, value); | 43 | set => this.Set((int)WixComponentGroupSymbolFields.DirectoryRef, value); |
| 44 | } | ||
| 45 | |||
| 46 | public string Source | ||
| 47 | { | ||
| 48 | get => (string)this.Fields[(int)WixComponentGroupSymbolFields.Source]; | ||
| 49 | set => this.Set((int)WixComponentGroupSymbolFields.Source, value); | ||
| 42 | } | 50 | } |
| 43 | } | 51 | } |
| 44 | } \ No newline at end of file | 52 | } |
