forked from dotnet/project-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettingsSingleFileGenerator.vb
21 lines (16 loc) · 1.11 KB
/
SettingsSingleFileGenerator.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
' Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE.md file in the project root for more information.
Imports System.Runtime.InteropServices
Imports Microsoft.VisualStudio.Shell
Namespace Microsoft.VisualStudio.Editors.SettingsDesigner
''' <summary>
''' Generator for strongly typed settings wrapper class
''' </summary>
<Guid("3b4c204a-88a2-3af8-bcfd-cfcb16399541")>
<ProvideObject(GetType(SettingsSingleFileGenerator))>
<CodeGeneratorRegistration(GetType(SettingsSingleFileGenerator), "Generator for strongly typed settings class", VBPackage.LegacyVBPackageGuid, GeneratesSharedDesignTimeSource:=True)>
<CodeGeneratorRegistration(GetType(SettingsSingleFileGenerator), "Generator for strongly typed settings class", VBPackage.LegacyCSharpPackageGuid, GeneratesSharedDesignTimeSource:=True)>
Public Class SettingsSingleFileGenerator
Inherits SettingsSingleFileGeneratorBase
Public Const SingleFileGeneratorName As String = "SettingsSingleFileGenerator"
End Class
End Namespace