Skip to content

Commit e1b7e15

Browse files
committed
Added explicit reference to fix runtime errors in some .Net environments. Updated all 3rd-party libraries. Updated to version 0.7.3.
1 parent bd54135 commit e1b7e15

2 files changed

Lines changed: 10 additions & 8 deletions

File tree

UnicodeHelper.Tests/UnicodeHelper.Tests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.1" />
15-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
16-
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1" />
17-
<PackageReference Include="MSTest.TestFramework" Version="3.1.1" />
14+
<PackageReference Include="Microsoft.Bcl.HashCode" Version="6.0.0" />
15+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
16+
<PackageReference Include="MSTest.TestAdapter" Version="3.11.0" />
17+
<PackageReference Include="MSTest.TestFramework" Version="3.11.0" />
1818
</ItemGroup>
1919

2020
<ItemGroup>

UnicodeHelper/UnicodeHelper.csproj

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<RunAnalyzersDuringLiveAnalysis>False</RunAnalyzersDuringLiveAnalysis>
88
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
99
<Title>Unicode Helper</Title>
10-
<Version>0.7.2</Version>
10+
<Version>0.7.3</Version>
1111
<Authors>FoolRunning</Authors>
1212
<Description>.Net library to get information about Unicode codepoints and to better handle the upper planes (1-16) of Unicode.</Description>
1313
<Copyright>© 2025 Tim Steenwyk</Copyright>
@@ -21,7 +21,8 @@
2121
<DelaySign>False</DelaySign>
2222
<GenerateDocumentationFile>True</GenerateDocumentationFile>
2323
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
24-
<PackageReleaseNotes>Strong named the assembly and package.</PackageReleaseNotes>
24+
<PackageReleaseNotes>Added explicit reference to Microsoft.Bcl.HashCode to fix some runtime errors in certain .Net environments.
25+
Updated all 3rd-party libraries to the lastest versions.</PackageReleaseNotes>
2526
</PropertyGroup>
2627

2728
<ItemGroup>
@@ -44,10 +45,11 @@
4445
</ItemGroup>
4546

4647
<ItemGroup>
47-
<PackageReference Include="CsvHelper" Version="33.0.1" />
48-
<PackageReference Include="JetBrains.Annotations" Version="2024.3.0">
48+
<PackageReference Include="CsvHelper" Version="33.1.0" />
49+
<PackageReference Include="JetBrains.Annotations" Version="2025.2.2">
4950
<PrivateAssets>all</PrivateAssets>
5051
</PackageReference>
52+
<PackageReference Include="Microsoft.Bcl.HashCode" Version="6.0.0" />
5153
<PackageReference Include="SharpZipLib" Version="1.4.2" />
5254
</ItemGroup>
5355

0 commit comments

Comments
 (0)