Skip to content

Commit 21af86b

Browse files
thecoderokclaude
andcommitted
Update target frameworks from .NET 7.0 to .NET 8.0 and fix test dependencies
- Upgraded main library from net7.0 to net8.0 (net7.0 is out of support) - Upgraded test project from net7.0 to net8.0 - Updated Microsoft.NET.Test.Sdk from 16.8.0 to 17.11.1 to fix testhost assembly loading issues - Resolves test execution failures with .NET 9.0 SDK 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 50189e2 commit 21af86b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Unidecode.NET.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<PackageLicenseExpression>MIT</PackageLicenseExpression>
99
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1010
<Description>Unidecode.NET returns transliterated string</Description>
11-
<TargetFrameworks>net7.0</TargetFrameworks>
11+
<TargetFrameworks>net8.0</TargetFrameworks>
1212
<VersionPrefix>2.2.1</VersionPrefix>
1313
<PackageTags>text;unicode;seo</PackageTags>
1414
<RepositoryType>git</RepositoryType>

test/Unidecode.NET.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net7.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
</PropertyGroup>
55
<ItemGroup>
6-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.0" />
6+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
77
<PackageReference Include="xunit" Version="2.4.1" />
88
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
99
<PrivateAssets>all</PrivateAssets>

0 commit comments

Comments
 (0)