Skip to content

Commit 04cd54a

Browse files
committed
Updated Tools Options sub menu to follow VS standards, "general"
1 parent 1406948 commit 04cd54a

2 files changed

Lines changed: 16 additions & 18 deletions

File tree

src/VsLinuxDebugger/DebuggerPackage.cs

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,25 @@
77

88
namespace VsLinuxDebugger
99
{
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>
1311
/// <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 &lt;Asset Type="Microsoft.VisualStudio.VsPackage" ...&gt; 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 &lt;Asset Type="Microsoft.VisualStudio.VsPackage" ...&gt; in .vsixmanifest file.
23+
/// </para>
2624
/// </remarks>
2725
[PackageRegistration(UseManagedResourcesOnly = true, AllowsBackgroundLoading = true)]
2826
[Guid(DebuggerPackage.PackageGuidString)]
2927
[ProvideMenuResource("Menus.ctmenu", 1)]
30-
[ProvideOptionPage(typeof(OptionsPage), "Linux Debugger", "Options", 0, 0, true)]
28+
[ProvideOptionPage(typeof(OptionsPage), "Linux Debugger", "General", 0, 0, true)]
3129
public sealed partial class DebuggerPackage : AsyncPackage
3230
{
3331
/// <summary>Package GUID string.</summary>

src/VsLinuxDebugger/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
// You can specify all the values or you can default the Build and Revision Numbers
3030
// by using the '*' as shown below:
3131
// [assembly: AssemblyVersion("1.0.*")]
32-
[assembly: AssemblyVersion("1.0.0.0")]
33-
[assembly: AssemblyFileVersion("1.0.0.0")]
32+
[assembly: AssemblyVersion("1.1.0.0")]
33+
[assembly: AssemblyFileVersion("1.1.0.0")]

0 commit comments

Comments
 (0)