From c151a53423b92df61e1385c67862c8df3b68ba8a Mon Sep 17 00:00:00 2001 From: WMJ <wmj@live.cn> Date: Tue, 26 Jul 2022 08:43:48 +0800 Subject: [PATCH] Version 6.4 (Close #206) --- Codist/Codist.csproj | 2 +- Codist/Config.cs | 2 +- Codist/Properties/AssemblyInfo.cs | 2 +- Codist/source.extension.vsixmanifest | 2 +- TestProject2/CS8_0.cs | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) 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 @@ <Version>15.3.32</Version> </PackageReference> <PackageReference Include="Microsoft.VSSDK.BuildTools"> - <Version>17.0.5232</Version> + <Version>17.2.2186</Version> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> <PrivateAssets>all</PrivateAssets> </PackageReference> 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 @@ <?xml version="1.0" encoding="utf-8"?> <PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011"> <Metadata> - <Identity Id="Codist.WMJ.c7b93d20-621f-4b21-9d28-d51157ef0b94" Version="6.3.0.7299" Language="en-US" Publisher="WMJ" /> + <Identity Id="Codist.WMJ.c7b93d20-621f-4b21-9d28-d51157ef0b94" Version="6.4.0.7356" Language="en-US" Publisher="WMJ" /> <DisplayName>Codist</DisplayName> <Description xml:space="preserve">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.</Description> <MoreInfo>https://github.com/wmjordan/Codist</MoreInfo> 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() {