diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-05-11 08:10:08 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-05-11 08:10:08 -0700 |
| commit | aaae65d07ce2a78592fc533701975cc576341a46 (patch) | |
| tree | 4d897a9e89c1c816c10f9166ec8b191b19beb7c0 /src/ext/VisualStudio/wixext/Symbols | |
| parent | 8035cadb06c0ca91387d839f3452191f7d33869a (diff) | |
| parent | a8a1e0d6f99c2b902a8f81d3d7f3503c506e8171 (diff) | |
| download | wix-aaae65d07ce2a78592fc533701975cc576341a46.tar.gz wix-aaae65d07ce2a78592fc533701975cc576341a46.tar.bz2 wix-aaae65d07ce2a78592fc533701975cc576341a46.zip | |
Merge VisualStudio.wixext
Diffstat (limited to 'src/ext/VisualStudio/wixext/Symbols')
7 files changed, 461 insertions, 0 deletions
diff --git a/src/ext/VisualStudio/wixext/Symbols/HelpFileSymbol.cs b/src/ext/VisualStudio/wixext/Symbols/HelpFileSymbol.cs new file mode 100644 index 00000000..8078f4ab --- /dev/null +++ b/src/ext/VisualStudio/wixext/Symbols/HelpFileSymbol.cs | |||
| @@ -0,0 +1,95 @@ | |||
| 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | ||
| 2 | |||
| 3 | namespace WixToolset.VisualStudio | ||
| 4 | { | ||
| 5 | using WixToolset.Data; | ||
| 6 | using WixToolset.VisualStudio.Symbols; | ||
| 7 | |||
| 8 | public static partial class VSSymbolDefinitions | ||
| 9 | { | ||
| 10 | public static readonly IntermediateSymbolDefinition HelpFile = new IntermediateSymbolDefinition( | ||
| 11 | VSSymbolDefinitionType.HelpFile.ToString(), | ||
| 12 | new[] | ||
| 13 | { | ||
| 14 | new IntermediateFieldDefinition(nameof(HelpFileSymbolFields.HelpFileName), IntermediateFieldType.String), | ||
| 15 | new IntermediateFieldDefinition(nameof(HelpFileSymbolFields.LangID), IntermediateFieldType.Number), | ||
| 16 | new IntermediateFieldDefinition(nameof(HelpFileSymbolFields.HxSFileRef), IntermediateFieldType.String), | ||
| 17 | new IntermediateFieldDefinition(nameof(HelpFileSymbolFields.HxIFileRef), IntermediateFieldType.String), | ||
| 18 | new IntermediateFieldDefinition(nameof(HelpFileSymbolFields.HxQFileRef), IntermediateFieldType.String), | ||
| 19 | new IntermediateFieldDefinition(nameof(HelpFileSymbolFields.HxRFileRef), IntermediateFieldType.String), | ||
| 20 | new IntermediateFieldDefinition(nameof(HelpFileSymbolFields.SamplesFileRef), IntermediateFieldType.String), | ||
| 21 | }, | ||
| 22 | typeof(HelpFileSymbol)); | ||
| 23 | } | ||
| 24 | } | ||
| 25 | |||
| 26 | namespace WixToolset.VisualStudio.Symbols | ||
| 27 | { | ||
| 28 | using WixToolset.Data; | ||
| 29 | |||
| 30 | public enum HelpFileSymbolFields | ||
| 31 | { | ||
| 32 | HelpFileName, | ||
| 33 | LangID, | ||
| 34 | HxSFileRef, | ||
| 35 | HxIFileRef, | ||
| 36 | HxQFileRef, | ||
| 37 | HxRFileRef, | ||
| 38 | SamplesFileRef, | ||
| 39 | } | ||
| 40 | |||
| 41 | public class HelpFileSymbol : IntermediateSymbol | ||
| 42 | { | ||
| 43 | public HelpFileSymbol() : base(VSSymbolDefinitions.HelpFile, null, null) | ||
| 44 | { | ||
| 45 | } | ||
| 46 | |||
| 47 | public HelpFileSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(VSSymbolDefinitions.HelpFile, sourceLineNumber, id) | ||
| 48 | { | ||
| 49 | } | ||
| 50 | |||
| 51 | public IntermediateField this[HelpFileSymbolFields index] => this.Fields[(int)index]; | ||
| 52 | |||
| 53 | public string HelpFileName | ||
| 54 | { | ||
| 55 | get => this.Fields[(int)HelpFileSymbolFields.HelpFileName].AsString(); | ||
| 56 | set => this.Set((int)HelpFileSymbolFields.HelpFileName, value); | ||
| 57 | } | ||
| 58 | |||
| 59 | public int? LangID | ||
| 60 | { | ||
| 61 | get => this.Fields[(int)HelpFileSymbolFields.LangID].AsNullableNumber(); | ||
| 62 | set => this.Set((int)HelpFileSymbolFields.LangID, value); | ||
| 63 | } | ||
| 64 | |||
| 65 | public string HxSFileRef | ||
| 66 | { | ||
| 67 | get => this.Fields[(int)HelpFileSymbolFields.HxSFileRef].AsString(); | ||
| 68 | set => this.Set((int)HelpFileSymbolFields.HxSFileRef, value); | ||
| 69 | } | ||
| 70 | |||
| 71 | public string HxIFileRef | ||
| 72 | { | ||
| 73 | get => this.Fields[(int)HelpFileSymbolFields.HxIFileRef].AsString(); | ||
| 74 | set => this.Set((int)HelpFileSymbolFields.HxIFileRef, value); | ||
| 75 | } | ||
| 76 | |||
| 77 | public string HxQFileRef | ||
| 78 | { | ||
| 79 | get => this.Fields[(int)HelpFileSymbolFields.HxQFileRef].AsString(); | ||
| 80 | set => this.Set((int)HelpFileSymbolFields.HxQFileRef, value); | ||
| 81 | } | ||
| 82 | |||
| 83 | public string HxRFileRef | ||
| 84 | { | ||
| 85 | get => this.Fields[(int)HelpFileSymbolFields.HxRFileRef].AsString(); | ||
| 86 | set => this.Set((int)HelpFileSymbolFields.HxRFileRef, value); | ||
| 87 | } | ||
| 88 | |||
| 89 | public string SamplesFileRef | ||
| 90 | { | ||
| 91 | get => this.Fields[(int)HelpFileSymbolFields.SamplesFileRef].AsString(); | ||
| 92 | set => this.Set((int)HelpFileSymbolFields.SamplesFileRef, value); | ||
| 93 | } | ||
| 94 | } | ||
| 95 | } \ No newline at end of file | ||
diff --git a/src/ext/VisualStudio/wixext/Symbols/HelpFileToNamespaceSymbol.cs b/src/ext/VisualStudio/wixext/Symbols/HelpFileToNamespaceSymbol.cs new file mode 100644 index 00000000..f18d6701 --- /dev/null +++ b/src/ext/VisualStudio/wixext/Symbols/HelpFileToNamespaceSymbol.cs | |||
| @@ -0,0 +1,55 @@ | |||
| 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | ||
| 2 | |||
| 3 | namespace WixToolset.VisualStudio | ||
| 4 | { | ||
| 5 | using WixToolset.Data; | ||
| 6 | using WixToolset.VisualStudio.Symbols; | ||
| 7 | |||
| 8 | public static partial class VSSymbolDefinitions | ||
| 9 | { | ||
| 10 | public static readonly IntermediateSymbolDefinition HelpFileToNamespace = new IntermediateSymbolDefinition( | ||
| 11 | VSSymbolDefinitionType.HelpFileToNamespace.ToString(), | ||
| 12 | new[] | ||
| 13 | { | ||
| 14 | new IntermediateFieldDefinition(nameof(HelpFileToNamespaceSymbolFields.HelpFileRef), IntermediateFieldType.String), | ||
| 15 | new IntermediateFieldDefinition(nameof(HelpFileToNamespaceSymbolFields.HelpNamespaceRef), IntermediateFieldType.String), | ||
| 16 | }, | ||
| 17 | typeof(HelpFileToNamespaceSymbol)); | ||
| 18 | } | ||
| 19 | } | ||
| 20 | |||
| 21 | namespace WixToolset.VisualStudio.Symbols | ||
| 22 | { | ||
| 23 | using WixToolset.Data; | ||
| 24 | |||
| 25 | public enum HelpFileToNamespaceSymbolFields | ||
| 26 | { | ||
| 27 | HelpFileRef, | ||
| 28 | HelpNamespaceRef, | ||
| 29 | } | ||
| 30 | |||
| 31 | public class HelpFileToNamespaceSymbol : IntermediateSymbol | ||
| 32 | { | ||
| 33 | public HelpFileToNamespaceSymbol() : base(VSSymbolDefinitions.HelpFileToNamespace, null, null) | ||
| 34 | { | ||
| 35 | } | ||
| 36 | |||
| 37 | public HelpFileToNamespaceSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(VSSymbolDefinitions.HelpFileToNamespace, sourceLineNumber, id) | ||
| 38 | { | ||
| 39 | } | ||
| 40 | |||
| 41 | public IntermediateField this[HelpFileToNamespaceSymbolFields index] => this.Fields[(int)index]; | ||
| 42 | |||
| 43 | public string HelpFileRef | ||
| 44 | { | ||
| 45 | get => this.Fields[(int)HelpFileToNamespaceSymbolFields.HelpFileRef].AsString(); | ||
| 46 | set => this.Set((int)HelpFileToNamespaceSymbolFields.HelpFileRef, value); | ||
| 47 | } | ||
| 48 | |||
| 49 | public string HelpNamespaceRef | ||
| 50 | { | ||
| 51 | get => this.Fields[(int)HelpFileToNamespaceSymbolFields.HelpNamespaceRef].AsString(); | ||
| 52 | set => this.Set((int)HelpFileToNamespaceSymbolFields.HelpNamespaceRef, value); | ||
| 53 | } | ||
| 54 | } | ||
| 55 | } \ No newline at end of file | ||
diff --git a/src/ext/VisualStudio/wixext/Symbols/HelpFilterSymbol.cs b/src/ext/VisualStudio/wixext/Symbols/HelpFilterSymbol.cs new file mode 100644 index 00000000..9deb47d0 --- /dev/null +++ b/src/ext/VisualStudio/wixext/Symbols/HelpFilterSymbol.cs | |||
| @@ -0,0 +1,55 @@ | |||
| 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | ||
| 2 | |||
| 3 | namespace WixToolset.VisualStudio | ||
| 4 | { | ||
| 5 | using WixToolset.Data; | ||
| 6 | using WixToolset.VisualStudio.Symbols; | ||
| 7 | |||
| 8 | public static partial class VSSymbolDefinitions | ||
| 9 | { | ||
| 10 | public static readonly IntermediateSymbolDefinition HelpFilter = new IntermediateSymbolDefinition( | ||
| 11 | VSSymbolDefinitionType.HelpFilter.ToString(), | ||
| 12 | new[] | ||
| 13 | { | ||
| 14 | new IntermediateFieldDefinition(nameof(HelpFilterSymbolFields.Description), IntermediateFieldType.String), | ||
| 15 | new IntermediateFieldDefinition(nameof(HelpFilterSymbolFields.QueryString), IntermediateFieldType.String), | ||
| 16 | }, | ||
| 17 | typeof(HelpFilterSymbol)); | ||
| 18 | } | ||
| 19 | } | ||
| 20 | |||
| 21 | namespace WixToolset.VisualStudio.Symbols | ||
| 22 | { | ||
| 23 | using WixToolset.Data; | ||
| 24 | |||
| 25 | public enum HelpFilterSymbolFields | ||
| 26 | { | ||
| 27 | Description, | ||
| 28 | QueryString, | ||
| 29 | } | ||
| 30 | |||
| 31 | public class HelpFilterSymbol : IntermediateSymbol | ||
| 32 | { | ||
| 33 | public HelpFilterSymbol() : base(VSSymbolDefinitions.HelpFilter, null, null) | ||
| 34 | { | ||
| 35 | } | ||
| 36 | |||
| 37 | public HelpFilterSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(VSSymbolDefinitions.HelpFilter, sourceLineNumber, id) | ||
| 38 | { | ||
| 39 | } | ||
| 40 | |||
| 41 | public IntermediateField this[HelpFilterSymbolFields index] => this.Fields[(int)index]; | ||
| 42 | |||
| 43 | public string Description | ||
| 44 | { | ||
| 45 | get => this.Fields[(int)HelpFilterSymbolFields.Description].AsString(); | ||
| 46 | set => this.Set((int)HelpFilterSymbolFields.Description, value); | ||
| 47 | } | ||
| 48 | |||
| 49 | public string QueryString | ||
| 50 | { | ||
| 51 | get => this.Fields[(int)HelpFilterSymbolFields.QueryString].AsString(); | ||
| 52 | set => this.Set((int)HelpFilterSymbolFields.QueryString, value); | ||
| 53 | } | ||
| 54 | } | ||
| 55 | } \ No newline at end of file | ||
diff --git a/src/ext/VisualStudio/wixext/Symbols/HelpFilterToNamespaceSymbol.cs b/src/ext/VisualStudio/wixext/Symbols/HelpFilterToNamespaceSymbol.cs new file mode 100644 index 00000000..f3d21289 --- /dev/null +++ b/src/ext/VisualStudio/wixext/Symbols/HelpFilterToNamespaceSymbol.cs | |||
| @@ -0,0 +1,55 @@ | |||
| 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | ||
| 2 | |||
| 3 | namespace WixToolset.VisualStudio | ||
| 4 | { | ||
| 5 | using WixToolset.Data; | ||
| 6 | using WixToolset.VisualStudio.Symbols; | ||
| 7 | |||
| 8 | public static partial class VSSymbolDefinitions | ||
| 9 | { | ||
| 10 | public static readonly IntermediateSymbolDefinition HelpFilterToNamespace = new IntermediateSymbolDefinition( | ||
| 11 | VSSymbolDefinitionType.HelpFilterToNamespace.ToString(), | ||
| 12 | new[] | ||
| 13 | { | ||
| 14 | new IntermediateFieldDefinition(nameof(HelpFilterToNamespaceSymbolFields.HelpFilterRef), IntermediateFieldType.String), | ||
| 15 | new IntermediateFieldDefinition(nameof(HelpFilterToNamespaceSymbolFields.HelpNamespaceRef), IntermediateFieldType.String), | ||
| 16 | }, | ||
| 17 | typeof(HelpFilterToNamespaceSymbol)); | ||
| 18 | } | ||
| 19 | } | ||
| 20 | |||
| 21 | namespace WixToolset.VisualStudio.Symbols | ||
| 22 | { | ||
| 23 | using WixToolset.Data; | ||
| 24 | |||
| 25 | public enum HelpFilterToNamespaceSymbolFields | ||
| 26 | { | ||
| 27 | HelpFilterRef, | ||
| 28 | HelpNamespaceRef, | ||
| 29 | } | ||
| 30 | |||
| 31 | public class HelpFilterToNamespaceSymbol : IntermediateSymbol | ||
| 32 | { | ||
| 33 | public HelpFilterToNamespaceSymbol() : base(VSSymbolDefinitions.HelpFilterToNamespace, null, null) | ||
| 34 | { | ||
| 35 | } | ||
| 36 | |||
| 37 | public HelpFilterToNamespaceSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(VSSymbolDefinitions.HelpFilterToNamespace, sourceLineNumber, id) | ||
| 38 | { | ||
| 39 | } | ||
| 40 | |||
| 41 | public IntermediateField this[HelpFilterToNamespaceSymbolFields index] => this.Fields[(int)index]; | ||
| 42 | |||
| 43 | public string HelpFilterRef | ||
| 44 | { | ||
| 45 | get => this.Fields[(int)HelpFilterToNamespaceSymbolFields.HelpFilterRef].AsString(); | ||
| 46 | set => this.Set((int)HelpFilterToNamespaceSymbolFields.HelpFilterRef, value); | ||
| 47 | } | ||
| 48 | |||
| 49 | public string HelpNamespaceRef | ||
| 50 | { | ||
| 51 | get => this.Fields[(int)HelpFilterToNamespaceSymbolFields.HelpNamespaceRef].AsString(); | ||
| 52 | set => this.Set((int)HelpFilterToNamespaceSymbolFields.HelpNamespaceRef, value); | ||
| 53 | } | ||
| 54 | } | ||
| 55 | } \ No newline at end of file | ||
diff --git a/src/ext/VisualStudio/wixext/Symbols/HelpNamespaceSymbol.cs b/src/ext/VisualStudio/wixext/Symbols/HelpNamespaceSymbol.cs new file mode 100644 index 00000000..8d2c2f80 --- /dev/null +++ b/src/ext/VisualStudio/wixext/Symbols/HelpNamespaceSymbol.cs | |||
| @@ -0,0 +1,63 @@ | |||
| 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | ||
| 2 | |||
| 3 | namespace WixToolset.VisualStudio | ||
| 4 | { | ||
| 5 | using WixToolset.Data; | ||
| 6 | using WixToolset.VisualStudio.Symbols; | ||
| 7 | |||
| 8 | public static partial class VSSymbolDefinitions | ||
| 9 | { | ||
| 10 | public static readonly IntermediateSymbolDefinition HelpNamespace = new IntermediateSymbolDefinition( | ||
| 11 | VSSymbolDefinitionType.HelpNamespace.ToString(), | ||
| 12 | new[] | ||
| 13 | { | ||
| 14 | new IntermediateFieldDefinition(nameof(HelpNamespaceSymbolFields.NamespaceName), IntermediateFieldType.String), | ||
| 15 | new IntermediateFieldDefinition(nameof(HelpNamespaceSymbolFields.CollectionFileRef), IntermediateFieldType.String), | ||
| 16 | new IntermediateFieldDefinition(nameof(HelpNamespaceSymbolFields.Description), IntermediateFieldType.String), | ||
| 17 | }, | ||
| 18 | typeof(HelpNamespaceSymbol)); | ||
| 19 | } | ||
| 20 | } | ||
| 21 | |||
| 22 | namespace WixToolset.VisualStudio.Symbols | ||
| 23 | { | ||
| 24 | using WixToolset.Data; | ||
| 25 | |||
| 26 | public enum HelpNamespaceSymbolFields | ||
| 27 | { | ||
| 28 | NamespaceName, | ||
| 29 | CollectionFileRef, | ||
| 30 | Description, | ||
| 31 | } | ||
| 32 | |||
| 33 | public class HelpNamespaceSymbol : IntermediateSymbol | ||
| 34 | { | ||
| 35 | public HelpNamespaceSymbol() : base(VSSymbolDefinitions.HelpNamespace, null, null) | ||
| 36 | { | ||
| 37 | } | ||
| 38 | |||
| 39 | public HelpNamespaceSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(VSSymbolDefinitions.HelpNamespace, sourceLineNumber, id) | ||
| 40 | { | ||
| 41 | } | ||
| 42 | |||
| 43 | public IntermediateField this[HelpNamespaceSymbolFields index] => this.Fields[(int)index]; | ||
| 44 | |||
| 45 | public string NamespaceName | ||
| 46 | { | ||
| 47 | get => this.Fields[(int)HelpNamespaceSymbolFields.NamespaceName].AsString(); | ||
| 48 | set => this.Set((int)HelpNamespaceSymbolFields.NamespaceName, value); | ||
| 49 | } | ||
| 50 | |||
| 51 | public string CollectionFileRef | ||
| 52 | { | ||
| 53 | get => this.Fields[(int)HelpNamespaceSymbolFields.CollectionFileRef].AsString(); | ||
| 54 | set => this.Set((int)HelpNamespaceSymbolFields.CollectionFileRef, value); | ||
| 55 | } | ||
| 56 | |||
| 57 | public string Description | ||
| 58 | { | ||
| 59 | get => this.Fields[(int)HelpNamespaceSymbolFields.Description].AsString(); | ||
| 60 | set => this.Set((int)HelpNamespaceSymbolFields.Description, value); | ||
| 61 | } | ||
| 62 | } | ||
| 63 | } \ No newline at end of file | ||
diff --git a/src/ext/VisualStudio/wixext/Symbols/HelpPluginSymbol.cs b/src/ext/VisualStudio/wixext/Symbols/HelpPluginSymbol.cs new file mode 100644 index 00000000..a452fbd5 --- /dev/null +++ b/src/ext/VisualStudio/wixext/Symbols/HelpPluginSymbol.cs | |||
| @@ -0,0 +1,79 @@ | |||
| 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | ||
| 2 | |||
| 3 | namespace WixToolset.VisualStudio | ||
| 4 | { | ||
| 5 | using WixToolset.Data; | ||
| 6 | using WixToolset.VisualStudio.Symbols; | ||
| 7 | |||
| 8 | public static partial class VSSymbolDefinitions | ||
| 9 | { | ||
| 10 | public static readonly IntermediateSymbolDefinition HelpPlugin = new IntermediateSymbolDefinition( | ||
| 11 | VSSymbolDefinitionType.HelpPlugin.ToString(), | ||
| 12 | new[] | ||
| 13 | { | ||
| 14 | new IntermediateFieldDefinition(nameof(HelpPluginSymbolFields.HelpNamespaceRef), IntermediateFieldType.String), | ||
| 15 | new IntermediateFieldDefinition(nameof(HelpPluginSymbolFields.ParentHelpNamespaceRef), IntermediateFieldType.String), | ||
| 16 | new IntermediateFieldDefinition(nameof(HelpPluginSymbolFields.HxTFileRef), IntermediateFieldType.String), | ||
| 17 | new IntermediateFieldDefinition(nameof(HelpPluginSymbolFields.HxAFileRef), IntermediateFieldType.String), | ||
| 18 | new IntermediateFieldDefinition(nameof(HelpPluginSymbolFields.ParentHxTFileRef), IntermediateFieldType.String), | ||
| 19 | }, | ||
| 20 | typeof(HelpPluginSymbol)); | ||
| 21 | } | ||
| 22 | } | ||
| 23 | |||
| 24 | namespace WixToolset.VisualStudio.Symbols | ||
| 25 | { | ||
| 26 | using WixToolset.Data; | ||
| 27 | |||
| 28 | public enum HelpPluginSymbolFields | ||
| 29 | { | ||
| 30 | HelpNamespaceRef, | ||
| 31 | ParentHelpNamespaceRef, | ||
| 32 | HxTFileRef, | ||
| 33 | HxAFileRef, | ||
| 34 | ParentHxTFileRef, | ||
| 35 | } | ||
| 36 | |||
| 37 | public class HelpPluginSymbol : IntermediateSymbol | ||
| 38 | { | ||
| 39 | public HelpPluginSymbol() : base(VSSymbolDefinitions.HelpPlugin, null, null) | ||
| 40 | { | ||
| 41 | } | ||
| 42 | |||
| 43 | public HelpPluginSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(VSSymbolDefinitions.HelpPlugin, sourceLineNumber, id) | ||
| 44 | { | ||
| 45 | } | ||
| 46 | |||
| 47 | public IntermediateField this[HelpPluginSymbolFields index] => this.Fields[(int)index]; | ||
| 48 | |||
| 49 | public string HelpNamespaceRef | ||
| 50 | { | ||
| 51 | get => this.Fields[(int)HelpPluginSymbolFields.HelpNamespaceRef].AsString(); | ||
| 52 | set => this.Set((int)HelpPluginSymbolFields.HelpNamespaceRef, value); | ||
| 53 | } | ||
| 54 | |||
| 55 | public string ParentHelpNamespaceRef | ||
| 56 | { | ||
| 57 | get => this.Fields[(int)HelpPluginSymbolFields.ParentHelpNamespaceRef].AsString(); | ||
| 58 | set => this.Set((int)HelpPluginSymbolFields.ParentHelpNamespaceRef, value); | ||
| 59 | } | ||
| 60 | |||
| 61 | public string HxTFileRef | ||
| 62 | { | ||
| 63 | get => this.Fields[(int)HelpPluginSymbolFields.HxTFileRef].AsString(); | ||
| 64 | set => this.Set((int)HelpPluginSymbolFields.HxTFileRef, value); | ||
| 65 | } | ||
| 66 | |||
| 67 | public string HxAFileRef | ||
| 68 | { | ||
| 69 | get => this.Fields[(int)HelpPluginSymbolFields.HxAFileRef].AsString(); | ||
| 70 | set => this.Set((int)HelpPluginSymbolFields.HxAFileRef, value); | ||
| 71 | } | ||
| 72 | |||
| 73 | public string ParentHxTFileRef | ||
| 74 | { | ||
| 75 | get => this.Fields[(int)HelpPluginSymbolFields.ParentHxTFileRef].AsString(); | ||
| 76 | set => this.Set((int)HelpPluginSymbolFields.ParentHxTFileRef, value); | ||
| 77 | } | ||
| 78 | } | ||
| 79 | } \ No newline at end of file | ||
diff --git a/src/ext/VisualStudio/wixext/Symbols/VSSymbolDefinitions.cs b/src/ext/VisualStudio/wixext/Symbols/VSSymbolDefinitions.cs new file mode 100644 index 00000000..cea6a2b6 --- /dev/null +++ b/src/ext/VisualStudio/wixext/Symbols/VSSymbolDefinitions.cs | |||
| @@ -0,0 +1,59 @@ | |||
| 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | ||
| 2 | |||
| 3 | namespace WixToolset.VisualStudio | ||
| 4 | { | ||
| 5 | using System; | ||
| 6 | using WixToolset.Data; | ||
| 7 | |||
| 8 | public enum VSSymbolDefinitionType | ||
| 9 | { | ||
| 10 | HelpFile, | ||
| 11 | HelpFileToNamespace, | ||
| 12 | HelpFilter, | ||
| 13 | HelpFilterToNamespace, | ||
| 14 | HelpNamespace, | ||
| 15 | HelpPlugin, | ||
| 16 | } | ||
| 17 | |||
| 18 | public static partial class VSSymbolDefinitions | ||
| 19 | { | ||
| 20 | public static readonly Version Version = new Version("4.0.0"); | ||
| 21 | |||
| 22 | public static IntermediateSymbolDefinition ByName(string name) | ||
| 23 | { | ||
| 24 | if (!Enum.TryParse(name, out VSSymbolDefinitionType type)) | ||
| 25 | { | ||
| 26 | return null; | ||
| 27 | } | ||
| 28 | |||
| 29 | return ByType(type); | ||
| 30 | } | ||
| 31 | |||
| 32 | public static IntermediateSymbolDefinition ByType(VSSymbolDefinitionType type) | ||
| 33 | { | ||
| 34 | switch (type) | ||
| 35 | { | ||
| 36 | case VSSymbolDefinitionType.HelpFile: | ||
| 37 | return VSSymbolDefinitions.HelpFile; | ||
| 38 | |||
| 39 | case VSSymbolDefinitionType.HelpFileToNamespace: | ||
| 40 | return VSSymbolDefinitions.HelpFileToNamespace; | ||
| 41 | |||
| 42 | case VSSymbolDefinitionType.HelpFilter: | ||
| 43 | return VSSymbolDefinitions.HelpFilter; | ||
| 44 | |||
| 45 | case VSSymbolDefinitionType.HelpFilterToNamespace: | ||
| 46 | return VSSymbolDefinitions.HelpFilterToNamespace; | ||
| 47 | |||
| 48 | case VSSymbolDefinitionType.HelpNamespace: | ||
| 49 | return VSSymbolDefinitions.HelpNamespace; | ||
| 50 | |||
| 51 | case VSSymbolDefinitionType.HelpPlugin: | ||
| 52 | return VSSymbolDefinitions.HelpPlugin; | ||
| 53 | |||
| 54 | default: | ||
| 55 | throw new ArgumentOutOfRangeException(nameof(type)); | ||
| 56 | } | ||
| 57 | } | ||
| 58 | } | ||
| 59 | } | ||
