kasperk81
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with
42 additions and
5 deletions
-
src/ImageSharp/ImageSharp.csproj
-
tests/ImageSharp.Benchmarks/ImageSharp.Benchmarks.csproj
-
tests/ImageSharp.Tests.ProfilingSandbox/ImageSharp.Tests.ProfilingSandbox.csproj
-
tests/ImageSharp.Tests/ImageSharp.Tests.csproj
|
|
|
@ -19,8 +19,6 @@ |
|
|
|
<PropertyGroup> |
|
|
|
<Nullable>enable</Nullable> |
|
|
|
<WarningsAsErrors>Nullable</WarningsAsErrors> |
|
|
|
<TargetFrameworks>net8.0</TargetFrameworks> |
|
|
|
<IsTrimmable>true</IsTrimmable> |
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
<PropertyGroup> |
|
|
|
@ -28,6 +26,21 @@ |
|
|
|
<MinVerMinimumMajorMinor>4.0</MinVerMinimumMajorMinor> |
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
<Choose> |
|
|
|
<When Condition="$(SIXLABORS_TESTING_PREVIEW) == true"> |
|
|
|
<PropertyGroup> |
|
|
|
<TargetFrameworks>net8.0;net9.0</TargetFrameworks> |
|
|
|
<IsTrimmable>true</IsTrimmable> |
|
|
|
</PropertyGroup> |
|
|
|
</When> |
|
|
|
<Otherwise> |
|
|
|
<PropertyGroup> |
|
|
|
<TargetFrameworks>net8.0</TargetFrameworks> |
|
|
|
<IsTrimmable>true</IsTrimmable> |
|
|
|
</PropertyGroup> |
|
|
|
</Otherwise> |
|
|
|
</Choose> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
<None Include="..\..\LICENSE" Pack="true" PackagePath="" /> |
|
|
|
<None Include="..\..\shared-infrastructure\branding\icons\imagesharp\sixlabors.imagesharp.128.png" Pack="true" PackagePath="" /> |
|
|
|
|
|
|
|
@ -2,7 +2,6 @@ |
|
|
|
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
|
|
|
|
<PropertyGroup> |
|
|
|
<TargetFrameworks>net8.0</TargetFrameworks> |
|
|
|
<AssemblyName>ImageSharp.Benchmarks</AssemblyName> |
|
|
|
<OutputType>Exe</OutputType> |
|
|
|
<RootNamespace>SixLabors.ImageSharp.Benchmarks</RootNamespace> |
|
|
|
@ -21,6 +20,19 @@ |
|
|
|
<NoWarn>CA1822</NoWarn> |
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
<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> |
|
|
|
<Compile Include="..\ImageSharp.Tests\TestImages.cs" Link="Tests\TestImages.cs" /> |
|
|
|
<Compile Include="..\ImageSharp.Tests\TestUtilities\TestEnvironment.cs" Link="Tests\TestEnvironment.cs" /> |
|
|
|
|
|
|
|
@ -2,7 +2,6 @@ |
|
|
|
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
|
|
|
|
<PropertyGroup> |
|
|
|
<TargetFrameworks>net8.0</TargetFrameworks> |
|
|
|
<AssemblyName>ImageSharp.Tests.ProfilingSandbox</AssemblyName> |
|
|
|
<Description>A cross-platform library for processing of image files written in C#</Description> |
|
|
|
<OutputType>Exe</OutputType> |
|
|
|
@ -17,6 +16,19 @@ |
|
|
|
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained> |
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
<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> |
|
|
|
<Compile Remove="..\ImageSharp.Tests\IO\LocalFileSystem.cs" /> |
|
|
|
<Compile Include="..\ImageSharp.Benchmarks\LoadResizeSave\LoadResizeSaveStressRunner.cs" Link="LoadResizeSaveStressRunner.cs" /> |
|
|
|
|
|
|
|
@ -22,7 +22,7 @@ |
|
|
|
</Otherwise> |
|
|
|
</Choose> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
<ItemGroup> |
|
|
|
<InternalsVisibleTo Include="ImageSharp.Tests.ProfilingSandbox" Key="$(SixLaborsPublicKey)" /> |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
|