diff options
Diffstat (limited to 'src/wixext/Tuples/HelpPluginTuple.cs')
| -rw-r--r-- | src/wixext/Tuples/HelpPluginTuple.cs | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/src/wixext/Tuples/HelpPluginTuple.cs b/src/wixext/Tuples/HelpPluginTuple.cs index 5f146199..a452fbd5 100644 --- a/src/wixext/Tuples/HelpPluginTuple.cs +++ b/src/wixext/Tuples/HelpPluginTuple.cs | |||
| @@ -3,29 +3,29 @@ | |||
| 3 | namespace WixToolset.VisualStudio | 3 | namespace WixToolset.VisualStudio |
| 4 | { | 4 | { |
| 5 | using WixToolset.Data; | 5 | using WixToolset.Data; |
| 6 | using WixToolset.VisualStudio.Tuples; | 6 | using WixToolset.VisualStudio.Symbols; |
| 7 | 7 | ||
| 8 | public static partial class VSTupleDefinitions | 8 | public static partial class VSSymbolDefinitions |
| 9 | { | 9 | { |
| 10 | public static readonly IntermediateTupleDefinition HelpPlugin = new IntermediateTupleDefinition( | 10 | public static readonly IntermediateSymbolDefinition HelpPlugin = new IntermediateSymbolDefinition( |
| 11 | VSTupleDefinitionType.HelpPlugin.ToString(), | 11 | VSSymbolDefinitionType.HelpPlugin.ToString(), |
| 12 | new[] | 12 | new[] |
| 13 | { | 13 | { |
| 14 | new IntermediateFieldDefinition(nameof(HelpPluginTupleFields.HelpNamespaceRef), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(HelpPluginSymbolFields.HelpNamespaceRef), IntermediateFieldType.String), |
| 15 | new IntermediateFieldDefinition(nameof(HelpPluginTupleFields.ParentHelpNamespaceRef), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(HelpPluginSymbolFields.ParentHelpNamespaceRef), IntermediateFieldType.String), |
| 16 | new IntermediateFieldDefinition(nameof(HelpPluginTupleFields.HxTFileRef), IntermediateFieldType.String), | 16 | new IntermediateFieldDefinition(nameof(HelpPluginSymbolFields.HxTFileRef), IntermediateFieldType.String), |
| 17 | new IntermediateFieldDefinition(nameof(HelpPluginTupleFields.HxAFileRef), IntermediateFieldType.String), | 17 | new IntermediateFieldDefinition(nameof(HelpPluginSymbolFields.HxAFileRef), IntermediateFieldType.String), |
| 18 | new IntermediateFieldDefinition(nameof(HelpPluginTupleFields.ParentHxTFileRef), IntermediateFieldType.String), | 18 | new IntermediateFieldDefinition(nameof(HelpPluginSymbolFields.ParentHxTFileRef), IntermediateFieldType.String), |
| 19 | }, | 19 | }, |
| 20 | typeof(HelpPluginTuple)); | 20 | typeof(HelpPluginSymbol)); |
| 21 | } | 21 | } |
| 22 | } | 22 | } |
| 23 | 23 | ||
| 24 | namespace WixToolset.VisualStudio.Tuples | 24 | namespace WixToolset.VisualStudio.Symbols |
| 25 | { | 25 | { |
| 26 | using WixToolset.Data; | 26 | using WixToolset.Data; |
| 27 | 27 | ||
| 28 | public enum HelpPluginTupleFields | 28 | public enum HelpPluginSymbolFields |
| 29 | { | 29 | { |
| 30 | HelpNamespaceRef, | 30 | HelpNamespaceRef, |
| 31 | ParentHelpNamespaceRef, | 31 | ParentHelpNamespaceRef, |
| @@ -34,46 +34,46 @@ namespace WixToolset.VisualStudio.Tuples | |||
| 34 | ParentHxTFileRef, | 34 | ParentHxTFileRef, |
| 35 | } | 35 | } |
| 36 | 36 | ||
| 37 | public class HelpPluginTuple : IntermediateTuple | 37 | public class HelpPluginSymbol : IntermediateSymbol |
| 38 | { | 38 | { |
| 39 | public HelpPluginTuple() : base(VSTupleDefinitions.HelpPlugin, null, null) | 39 | public HelpPluginSymbol() : base(VSSymbolDefinitions.HelpPlugin, null, null) |
| 40 | { | 40 | { |
| 41 | } | 41 | } |
| 42 | 42 | ||
| 43 | public HelpPluginTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(VSTupleDefinitions.HelpPlugin, sourceLineNumber, id) | 43 | public HelpPluginSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(VSSymbolDefinitions.HelpPlugin, sourceLineNumber, id) |
| 44 | { | 44 | { |
| 45 | } | 45 | } |
| 46 | 46 | ||
| 47 | public IntermediateField this[HelpPluginTupleFields index] => this.Fields[(int)index]; | 47 | public IntermediateField this[HelpPluginSymbolFields index] => this.Fields[(int)index]; |
| 48 | 48 | ||
| 49 | public string HelpNamespaceRef | 49 | public string HelpNamespaceRef |
| 50 | { | 50 | { |
| 51 | get => this.Fields[(int)HelpPluginTupleFields.HelpNamespaceRef].AsString(); | 51 | get => this.Fields[(int)HelpPluginSymbolFields.HelpNamespaceRef].AsString(); |
| 52 | set => this.Set((int)HelpPluginTupleFields.HelpNamespaceRef, value); | 52 | set => this.Set((int)HelpPluginSymbolFields.HelpNamespaceRef, value); |
| 53 | } | 53 | } |
| 54 | 54 | ||
| 55 | public string ParentHelpNamespaceRef | 55 | public string ParentHelpNamespaceRef |
| 56 | { | 56 | { |
| 57 | get => this.Fields[(int)HelpPluginTupleFields.ParentHelpNamespaceRef].AsString(); | 57 | get => this.Fields[(int)HelpPluginSymbolFields.ParentHelpNamespaceRef].AsString(); |
| 58 | set => this.Set((int)HelpPluginTupleFields.ParentHelpNamespaceRef, value); | 58 | set => this.Set((int)HelpPluginSymbolFields.ParentHelpNamespaceRef, value); |
| 59 | } | 59 | } |
| 60 | 60 | ||
| 61 | public string HxTFileRef | 61 | public string HxTFileRef |
| 62 | { | 62 | { |
| 63 | get => this.Fields[(int)HelpPluginTupleFields.HxTFileRef].AsString(); | 63 | get => this.Fields[(int)HelpPluginSymbolFields.HxTFileRef].AsString(); |
| 64 | set => this.Set((int)HelpPluginTupleFields.HxTFileRef, value); | 64 | set => this.Set((int)HelpPluginSymbolFields.HxTFileRef, value); |
| 65 | } | 65 | } |
| 66 | 66 | ||
| 67 | public string HxAFileRef | 67 | public string HxAFileRef |
| 68 | { | 68 | { |
| 69 | get => this.Fields[(int)HelpPluginTupleFields.HxAFileRef].AsString(); | 69 | get => this.Fields[(int)HelpPluginSymbolFields.HxAFileRef].AsString(); |
| 70 | set => this.Set((int)HelpPluginTupleFields.HxAFileRef, value); | 70 | set => this.Set((int)HelpPluginSymbolFields.HxAFileRef, value); |
| 71 | } | 71 | } |
| 72 | 72 | ||
| 73 | public string ParentHxTFileRef | 73 | public string ParentHxTFileRef |
| 74 | { | 74 | { |
| 75 | get => this.Fields[(int)HelpPluginTupleFields.ParentHxTFileRef].AsString(); | 75 | get => this.Fields[(int)HelpPluginSymbolFields.ParentHxTFileRef].AsString(); |
| 76 | set => this.Set((int)HelpPluginTupleFields.ParentHxTFileRef, value); | 76 | set => this.Set((int)HelpPluginSymbolFields.ParentHxTFileRef, value); |
| 77 | } | 77 | } |
| 78 | } | 78 | } |
| 79 | } \ No newline at end of file | 79 | } \ No newline at end of file |
