Browse Source

add net9.0

pull/2812/head
kasperk81 1 year ago
committed by GitHub
parent
commit
9cc5ff2ffd
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 16
      tests/ImageSharp.Tests/ImageSharp.Tests.csproj

16
tests/ImageSharp.Tests/ImageSharp.Tests.csproj

@ -2,7 +2,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<DebugSymbols>True</DebugSymbols>
<AssemblyName>SixLabors.ImageSharp.Tests</AssemblyName>
<Platforms>AnyCPU;x64;x86;ARM64</Platforms>
@ -10,7 +9,20 @@
<Configurations>Debug;Release</Configurations>
</PropertyGroup>
<ItemGroup>
<Choose>
<When Condition="$(SIXLABORS_TESTING_PREVIEW) == true">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
</PropertyGroup>
</When>
<Otherwise>
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
</PropertyGroup>
</Otherwise>
</Choose>
<ItemGroup>
<InternalsVisibleTo Include="ImageSharp.Tests.ProfilingSandbox" Key="$(SixLaborsPublicKey)" />
</ItemGroup>

Loading…
Cancel
Save