|
7 | 7 |
|
8 | 8 | namespace VsLinuxDebugger |
9 | 9 | { |
10 | | - /// <summary> |
11 | | - /// This is the class that implements the package exposed by this assembly. |
12 | | - /// </summary> |
| 10 | + /// <summary>This is the class that implements the package exposed by this assembly.</summary> |
13 | 11 | /// <remarks> |
14 | | - /// <para> |
15 | | - /// The minimum requirement for a class to be considered a valid package for Visual Studio |
16 | | - /// is to implement the IVsPackage interface and register itself with the shell. |
17 | | - /// This package uses the helper classes defined inside the Managed Package Framework (MPF) |
18 | | - /// to do it: it derives from the Package class that provides the implementation of the |
19 | | - /// IVsPackage interface and uses the registration attributes defined in the framework to |
20 | | - /// register itself and its components with the shell. These attributes tell the pkgdef creation |
21 | | - /// utility what data to put into .pkgdef file. |
22 | | - /// </para> |
23 | | - /// <para> |
24 | | - /// To get loaded into VS, the package must be referred by <Asset Type="Microsoft.VisualStudio.VsPackage" ...> in .vsixmanifest file. |
25 | | - /// </para> |
| 12 | + /// <para> |
| 13 | + /// The minimum requirement for a class to be considered a valid package for Visual Studio |
| 14 | + /// is to implement the IVsPackage interface and register itself with the shell. |
| 15 | + /// This package uses the helper classes defined inside the Managed Package Framework (MPF) |
| 16 | + /// to do it: it derives from the Package class that provides the implementation of the |
| 17 | + /// IVsPackage interface and uses the registration attributes defined in the framework to |
| 18 | + /// register itself and its components with the shell. These attributes tell the pkgdef creation |
| 19 | + /// utility what data to put into .pkgdef file. |
| 20 | + /// </para> |
| 21 | + /// <para> |
| 22 | + /// To get loaded into VS, the package must be referred by <Asset Type="Microsoft.VisualStudio.VsPackage" ...> in .vsixmanifest file. |
| 23 | + /// </para> |
26 | 24 | /// </remarks> |
27 | 25 | [PackageRegistration(UseManagedResourcesOnly = true, AllowsBackgroundLoading = true)] |
28 | 26 | [Guid(DebuggerPackage.PackageGuidString)] |
29 | 27 | [ProvideMenuResource("Menus.ctmenu", 1)] |
30 | | - [ProvideOptionPage(typeof(OptionsPage), "Linux Debugger", "Options", 0, 0, true)] |
| 28 | + [ProvideOptionPage(typeof(OptionsPage), "Linux Debugger", "General", 0, 0, true)] |
31 | 29 | public sealed partial class DebuggerPackage : AsyncPackage |
32 | 30 | { |
33 | 31 | /// <summary>Package GUID string.</summary> |
|
0 commit comments