Skip to content

Commit

Permalink
Releasing version v2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
koszeggy committed Aug 13, 2020
1 parent 9358d3a commit 6bd3414
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@

[assembly: AssemblyVersion(Ids.Version)]
[assembly: AssemblyFileVersion(Ids.Version)]
[assembly: AssemblyInformationalVersion(Ids.Version)]
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ internal static class Ids
internal const string ResourceTitle = "110";
internal const string ResourceDetails = "112";
internal const int IconResourceId = 400;
internal const string Version = "2.2.0"; // Note: in .vsixmanifest it should be adjusted manually
internal const string Version = "2.2.1"; // Note: in .vsixmanifest it should be adjusted manually
internal const int ExecuteImagingToolsCommandId = 0x0100;
internal const int ManageDebuggerVisualizerInstallationsCommandId = 0x0101;

Expand Down
Original file line number Diff line number Diff line change
@@ -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="fd42f5a8-4449-4c07-8b60-b6bd58b67118" Version="2.2.0" Language="en-US" Publisher="KGy SOFT" />
<Identity Id="fd42f5a8-4449-4c07-8b60-b6bd58b67118" Version="2.2.1" Language="en-US" Publisher="KGy SOFT" />
<DisplayName>KGy SOFT Drawing DebuggerVisualizers</DisplayName>
<Description xml:space="preserve">Debugger Visualizers for System.Drawing types such as Image (Bitmap and Metafile), Icon, Graphics, BitmapData, ColorPalette and Color.</Description>
<MoreInfo>https://github.com/koszeggy/KGySoft.Drawing.Tools</MoreInfo>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.2.0.0")]
[assembly: AssemblyFileVersion("2.2.0.0")]
[assembly: AssemblyVersion("2.2.1.0")]
[assembly: AssemblyFileVersion("2.2.1.0")]
[assembly: AssemblyInformationalVersion("2.2.1")]
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("2.2.0.0")]
[assembly: AssemblyFileVersion("2.2.0.0")]
[assembly: AssemblyVersion("2.2.1.0")]
[assembly: AssemblyFileVersion("2.2.1.0")]
[assembly: AssemblyInformationalVersion("2.2.1")]

// Image
[assembly: DebuggerVisualizer(typeof(ImageDebuggerVisualizer), typeof(ImageSerializer),
Expand Down
5 changes: 3 additions & 2 deletions KGySoft.Drawing.ImagingTools/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("2.2.0.0")]
[assembly: AssemblyFileVersion("2.2.0.0")]
[assembly: AssemblyVersion("2.2.1.0")]
[assembly: AssemblyFileVersion("2.2.1.0")]
[assembly: AssemblyInformationalVersion("2.2.1")]

[assembly: NeutralResourcesLanguage("en")]

0 comments on commit 6bd3414

Please sign in to comment.