diff --git a/Codist/CodistPackage.cs b/Codist/CodistPackage.cs
index 67bbf320..b51af0b5 100644
--- a/Codist/CodistPackage.cs
+++ b/Codist/CodistPackage.cs
@@ -17,7 +17,7 @@ namespace Codist
/// The project consists of the following namespace: backed by , , , , etc.
///
[PackageRegistration(UseManagedResourcesOnly = true, AllowsBackgroundLoading = true)]
- [InstalledProductRegistration("#110", "#112", "5.0", IconResourceID = 400)] // Information on this package for Help/About
+ [InstalledProductRegistration("#110", "#112", "5.1", IconResourceID = 400)] // Information on this package for Help/About
[Guid(PackageGuidString)]
[ProvideOptionPage(typeof(Options.General), Constants.NameOfMe, "General", 0, 0, true, Sort = 0)]
diff --git a/Codist/Properties/AssemblyInfo.cs b/Codist/Properties/AssemblyInfo.cs
index 81963cc6..cc06b0e1 100644
--- a/Codist/Properties/AssemblyInfo.cs
+++ b/Codist/Properties/AssemblyInfo.cs
@@ -11,4 +11,4 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("5.0.0.0")]
-[assembly: AssemblyFileVersion("5.0.0.4162")]
+[assembly: AssemblyFileVersion("5.1.0.4238")]
diff --git a/Codist/source.extension.vsixmanifest b/Codist/source.extension.vsixmanifest
index 6770d1da..734a17f6 100644
--- a/Codist/source.extension.vsixmanifest
+++ b/Codist/source.extension.vsixmanifest
@@ -1,7 +1,7 @@
-
+
Codist
A productivity enhancer for C# programmers with advanced syntax highlight, Super Quick Info (code tooltip), Smart Bar (contextual toolbar), Navigation Bar, code structure markers on scrollbar, comment tagger, and more.
https://github.com/wmjordan/Codist
diff --git a/README.md b/README.md
index e2ef4587..84fcc2b0 100644
--- a/README.md
+++ b/README.md
@@ -283,6 +283,8 @@
![Navigation Bar Fields](doc/navigation-bar-context-menu.png)
+ From version 5.1 on, the right click menu includes symbol analysis commands.
+
3. Clicking on a **Member node** will select the whole member. If you have the _Smart Bar_ feature on and let it appear when selection is changed, _Smart Bar_ will be displayed and let you perform actions onto the member.
![Navigation Bar Select](doc/navigation-bar-select.png)
diff --git a/TestProject/TestPage.cs b/TestProject/TestPage.cs
index 762e4eff..879f6e77 100644
--- a/TestProject/TestPage.cs
+++ b/TestProject/TestPage.cs
@@ -73,6 +73,7 @@ private void TestPage_MyEvent(object sender, EventArgs e) {
/// Any type
public void Method() { //type parameter
+ #region Test Methods
// unnecessary code
TestProject.ExtensionClass.Log(typeof(TGeneric).Name); // extension method
NativeMethods.ExternMethod(value: 1, ptr: IntPtr.Zero); // extern method
@@ -82,6 +83,7 @@ public void Method() { //type parameter
base.VirtualMethod(); // base virtual method
MyEvent(this, EventArgs.Empty); // event
this.Method(); // qualified invocation
+ #endregion
}
protected override int AbstractMethod() { // overridden method
diff --git a/doc/preview.png b/doc/preview.png
index 465788cb..d481c2ab 100644
Binary files a/doc/preview.png and b/doc/preview.png differ