diff --git a/Codist/Codist.csproj b/Codist/Codist.csproj index dfad0ae8..f49c13b8 100644 --- a/Codist/Codist.csproj +++ b/Codist/Codist.csproj @@ -394,7 +394,7 @@ 15.3.32 - 17.0.5232 + 17.2.2186 runtime; build; native; contentfiles; analyzers all diff --git a/Codist/Config.cs b/Codist/Config.cs index 257ad61a..617e4d14 100644 --- a/Codist/Config.cs +++ b/Codist/Config.cs @@ -16,7 +16,7 @@ namespace Codist { sealed class Config { - internal const string CurrentVersion = "6.3.0"; + internal const string CurrentVersion = "6.4.0"; const string ThemePrefix = "res:"; const int DefaultIconSize = 20; internal const string LightTheme = ThemePrefix + "Light", PaleLightTheme = ThemePrefix + "PaleLight", DarkTheme = ThemePrefix + "Dark", PaleDarkTheme = ThemePrefix + "PaleDark", SimpleTheme = ThemePrefix + "Simple"; diff --git a/Codist/Properties/AssemblyInfo.cs b/Codist/Properties/AssemblyInfo.cs index fa350c32..82d8eded 100644 --- a/Codist/Properties/AssemblyInfo.cs +++ b/Codist/Properties/AssemblyInfo.cs @@ -11,5 +11,5 @@ [assembly: AssemblyTrademark(nameof(Codist))] [assembly: ComVisible(false)] [assembly: AssemblyVersion("6.0.0.0")] -[assembly: AssemblyFileVersion("6.3.0.7300")] +[assembly: AssemblyFileVersion("6.4.0.7300")] [assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] \ No newline at end of file diff --git a/Codist/source.extension.vsixmanifest b/Codist/source.extension.vsixmanifest index d3ce02a4..e9309461 100644 --- a/Codist/source.extension.vsixmanifest +++ b/Codist/source.extension.vsixmanifest @@ -1,7 +1,7 @@  - + Codist A C# programmer's productivity booster which enhances syntax highlighting, quick info (tooltip), navigation bar, scrollbar, display quality, automatically updated version numbers, and brings smart tool bar to code editor. https://github.com/wmjordan/Codist diff --git a/TestProject2/CS8_0.cs b/TestProject2/CS8_0.cs index 6ac3d0cb..767b4381 100644 --- a/TestProject2/CS8_0.cs +++ b/TestProject2/CS8_0.cs @@ -25,7 +25,7 @@ void Action() { public interface IStaticImplementation { static readonly DateTime DefaultTime = DateTime.Now; - public static void PrintName() { + static void PrintName() { Console.WriteLine(nameof(IStaticImplementation)); } private static void PrintTime() {