Skip to content

Commit 240faf9

Browse files
committed
Add net10.0 target framework to test project
Updated SanitizeFilenameTests.csproj to include net10.0 in the TargetFrameworks for both Windows and non-Windows environments. This allows tests to run against the latest .NET version.
1 parent 53bbc8a commit 240faf9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SanitizeFilenameTests/SanitizeFilenameTests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT' ">net8.0;net9.0;net48</TargetFrameworks>
5-
<TargetFrameworks Condition="'$(OS)' != 'Windows_NT' ">net8.0;net9.0</TargetFrameworks>
4+
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT' ">net8.0;net9.0;net10.0;net48</TargetFrameworks>
5+
<TargetFrameworks Condition="'$(OS)' != 'Windows_NT' ">net8.0;net9.0;net10.0</TargetFrameworks>
66
<LangVersion>latest</LangVersion>
77
<ImplicitUsings>enable</ImplicitUsings>
88
<Nullable>enable</Nullable>

0 commit comments

Comments
 (0)