2024-03-19 20:02:20 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<Nullable>disable</Nullable>
|
|
|
|
<LangVersion>7.3</LangVersion>
|
|
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
2024-04-06 15:17:05 +02:00
|
|
|
<RuntimeIdentifiers>linux-arm;linux-arm64;linux-x64;win-x86;win-x64;osx-arm64;osx-x64</RuntimeIdentifiers>
|
2024-03-19 20:02:20 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<!-- Nuget Properties. -->
|
|
|
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
|
|
|
<PackageId>Quik.StbImage</PackageId>
|
2024-06-01 13:23:32 +02:00
|
|
|
<Version>1.1.2</Version>
|
2024-03-19 20:02:20 +01:00
|
|
|
<Authors>STBI Authors, H. Utku Maden</Authors>
|
|
|
|
<Description>
|
|
|
|
A C# wrapper for the ubiquitous Stb Image library.
|
|
|
|
</Description>
|
2024-06-11 18:17:51 +02:00
|
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
2024-03-19 20:02:20 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Because the .net build system is garbage of the purest quality, I need
|
|
|
|
to specify each runtime directory by itself or it won't be picked up as a
|
|
|
|
native specific to each platform and won't be included in the deps.json file
|
|
|
|
that determines a lot of load paths for projects.
|
|
|
|
-->
|
|
|
|
<ItemGroup>
|
2024-06-11 18:17:51 +02:00
|
|
|
<Content Include="README.md" Pack="true" PackagePath="/"/>
|
2024-03-19 20:02:20 +01:00
|
|
|
<Content Include="runtimes/linux-arm/native/*.so">
|
|
|
|
<PackagePath>runtimes/linux-arm/native/</PackagePath>
|
|
|
|
<Pack>true</Pack>
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
<Content Include="runtimes/linux-arm64/native/*.so">
|
|
|
|
<PackagePath>runtimes/linux-arm64/native/</PackagePath>
|
|
|
|
<Pack>true</Pack>
|
|
|
|
<CopyToOutputDirectory>PreserveNewest/</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
<Content Include="runtimes/linux-x64/native/*.so">
|
|
|
|
<PackagePath>runtimes/linux-x64/native/</PackagePath>
|
|
|
|
<Pack>true</Pack>
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
<Content Include="runtimes/linux-x86/native/*.so">
|
|
|
|
<PackagePath>runtimes/linux-x86/native/</PackagePath>
|
|
|
|
<Pack>true</Pack>
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
<Content Include="runtimes/win-x64/native/*.dll">
|
|
|
|
<PackagePath>runtimes/win-x64/native/</PackagePath>
|
|
|
|
<Pack>true</Pack>
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
<Content Include="runtimes/win-x86/native/*.dll">
|
|
|
|
<PackagePath>runtimes/win-x86/native/</PackagePath>
|
|
|
|
<Pack>true</Pack>
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
2024-04-06 14:58:05 +02:00
|
|
|
<Content Include="runtimes/osx-x64/native/*.dll">
|
|
|
|
<PackagePath>runtimes/osx-x64/native/</PackagePath>
|
|
|
|
<Pack>true</Pack>
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
<Content Include="runtimes/osx-arm64/native/*.dll">
|
|
|
|
<PackagePath>runtimes/osx-arm64/native/</PackagePath>
|
|
|
|
<Pack>true</Pack>
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
2024-03-19 20:02:20 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|