Files
Misaki.HighPerformance/Misaki.HighPerformance.Image/Misaki.HighPerformance.Image.csproj
Misaki 94f10de90e Added WaitAll and WaitAny to JobScheduler;
Added generation support to UnsafeSparseSet;
2025-09-11 18:45:40 +09:00

28 lines
1.0 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Authors>StbImageSharpTeam</Authors>
<Product>StbImageSharp</Product>
<PackageId>StbImageSharp</PackageId>
<TargetFrameworks></TargetFrameworks>
<Description>C# port of the stb_image.h</Description>
<PackageLicenseUrl>Public Domain</PackageLicenseUrl>
<Version>1.0.0</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TargetFramework>net9.0</TargetFramework>
<IsPackable>True</IsPackable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<IsAotCompatible>True</IsAotCompatible>
<WarningLevel>8</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<IsAotCompatible>True</IsAotCompatible>
<WarningLevel>8</WarningLevel>
</PropertyGroup>
</Project>