Skip to content

Commit 6077f88

Browse files
committed
V 1.18
1 parent a5e5310 commit 6077f88

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

Release notes.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
1.17
1+
1.18
2+
- Fix Update all dependencies to use and reference only the latest version of System.Windows.Interactivity
3+
4+
1.17
25
- Fix #117, #122, #123 and related: Issues with mixed versions of System.Windows.Interactivity
36

47
1.16

ResXManager.Infrastructure/CultureKey.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ private static bool InternalEquals([CanBeNull] CultureKey left, [CanBeNull] Cult
8080
{
8181
if (ReferenceEquals(left, right))
8282
return true;
83-
if (ReferenceEquals(left, null))
83+
if (left is null)
8484
return false;
85-
if (ReferenceEquals(right, null))
85+
if (right is null)
8686
return false;
8787

8888
return Equals(left.Culture, right.Culture);
@@ -128,9 +128,9 @@ private static int Compare([CanBeNull] CultureKey left, [CanBeNull] CultureKey r
128128
{
129129
if (ReferenceEquals(left, right))
130130
return 0;
131-
if (ReferenceEquals(left, null))
131+
if (left is null)
132132
return -1;
133-
if (ReferenceEquals(right, null))
133+
if (right is null)
134134
return 1;
135135

136136
return string.Compare(left.ToString(), right.ToString(), StringComparison.OrdinalIgnoreCase);

ResXManager.VSIX/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<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">
33
<Metadata>
4-
<Identity Id="43b35fe0-1f30-48de-887a-68256474202a" Version="1.17.0.0" Language="en-US" Publisher="tom-englert.de" />
4+
<Identity Id="43b35fe0-1f30-48de-887a-68256474202a" Version="1.18.0.0" Language="en-US" Publisher="tom-englert.de" />
55
<DisplayName>ResXManager</DisplayName>
66
<Description xml:space="preserve">The most popular tool to localize and manage all kind of applications with resx-based resources. Shows all resources of a solution and let's you edit the strings and their localizations in a well-arranged data grid.</Description>
77
<MoreInfo>https://github.com/tom-englert/ResXResourceManager</MoreInfo>

ResXManager/ResXManager.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<ProductName>ResX Resource Manager</ProductName>
3737
<PublisherName>tom-englert.de</PublisherName>
3838
<ApplicationRevision>0</ApplicationRevision>
39-
<ApplicationVersion>1.17.0.0</ApplicationVersion>
39+
<ApplicationVersion>1.18.0.0</ApplicationVersion>
4040
<UseApplicationTrust>false</UseApplicationTrust>
4141
<PublishWizardCompleted>true</PublishWizardCompleted>
4242
<BootstrapperEnabled>true</BootstrapperEnabled>

Version.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55

66
internal static class Product
77
{
8-
public const string Version = "1.17.0.0";
8+
public const string Version = "1.18.0.0";
99
}

0 commit comments

Comments
 (0)