kasperk81
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
14 additions and
2 deletions
-
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> |
|
|
|
|
|
|
|
|