mirror of https://github.com/ppy/SDL3-CS.git
107 lines
4.3 KiB
XML
107 lines
4.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<RootNamespace>SDL</RootNamespace>
|
|
<TargetFrameworks Condition=" '$(CI_DONT_TARGET_ANDROID)' != '1' ">net8.0;net8.0-android</TargetFrameworks>
|
|
<TargetFramework Condition=" '$(CI_DONT_TARGET_ANDROID)' == '1' ">net8.0</TargetFramework>
|
|
<SupportedOSPlatformVersion>21</SupportedOSPlatformVersion>
|
|
<Nullable>enable</Nullable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<NoWarn>$(NoWarn);SYSLIB1054;CA1401</NoWarn>
|
|
<DefineConstants>$(DefineConstants);JETBRAINS_ANNOTATIONS</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Label="NuGet">
|
|
<Authors>ppy Pty Ltd</Authors>
|
|
<Company>ppy Pty Ltd</Company>
|
|
<Copyright>Copyright (c) 2024 ppy Pty Ltd</Copyright>
|
|
<Product>ppy.SDL3-CS</Product>
|
|
<PackageId>ppy.SDL3-CS</PackageId>
|
|
<PackageTags>SDL;SDL3;SDL3-CS</PackageTags>
|
|
<PackageReleaseNotes>Automated release.</PackageReleaseNotes>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageProjectUrl>https://github.com/ppy/SDL3-CS</PackageProjectUrl>
|
|
<PackageReadmeFile>README_nuget.md</PackageReadmeFile>
|
|
<RepositoryUrl>https://github.com/ppy/SDL3-CS</RepositoryUrl>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="$(MSBuildThisFileDirectory)..\README_nuget.md" Pack="true" PackagePath="\"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\SDL3-CS.SourceGeneration\SDL3-CS.SourceGeneration.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="libclang" Version="17.0.4">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="libClangSharp" Version="17.0.4">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="$(MSBuildThisFileDirectory)..\native\win-x64\SDL3.dll">
|
|
<PackagePath>runtimes/win-x64/native</PackagePath>
|
|
<Pack>true</Pack>
|
|
</None>
|
|
<None Include="$(MSBuildThisFileDirectory)..\native\win-arm64\SDL3.dll">
|
|
<PackagePath>runtimes/win-arm64/native</PackagePath>
|
|
<Pack>true</Pack>
|
|
</None>
|
|
<None Include="$(MSBuildThisFileDirectory)..\native\win-x86\SDL3.dll">
|
|
<PackagePath>runtimes/win-x86/native</PackagePath>
|
|
<Pack>true</Pack>
|
|
</None>
|
|
<None Include="$(MSBuildThisFileDirectory)..\native\osx-x64\libSDL3.dylib">
|
|
<PackagePath>runtimes/osx-x64/native</PackagePath>
|
|
<Pack>true</Pack>
|
|
</None>
|
|
<None Include="$(MSBuildThisFileDirectory)..\native\osx-arm64\libSDL3.dylib">
|
|
<PackagePath>runtimes/osx-arm64/native</PackagePath>
|
|
<Pack>true</Pack>
|
|
</None>
|
|
<None Include="$(MSBuildThisFileDirectory)..\native\linux-x64\libSDL3.so">
|
|
<PackagePath>runtimes/linux-x64/native</PackagePath>
|
|
<Pack>true</Pack>
|
|
</None>
|
|
<None Include="$(MSBuildThisFileDirectory)..\native\linux-x86\libSDL3.so">
|
|
<PackagePath>runtimes/linux-x86/native</PackagePath>
|
|
<Pack>true</Pack>
|
|
</None>
|
|
<None Include="$(MSBuildThisFileDirectory)..\native\linux-arm64\libSDL3.so">
|
|
<PackagePath>runtimes/linux-arm64/native</PackagePath>
|
|
<Pack>true</Pack>
|
|
</None>
|
|
<None Include="$(MSBuildThisFileDirectory)..\native\linux-arm\libSDL3.so">
|
|
<PackagePath>runtimes/linux-arm/native</PackagePath>
|
|
<Pack>true</Pack>
|
|
</None>
|
|
<None Include="$(MSBuildThisFileDirectory)..\native\ios\SDL3.xcframework\**\*">
|
|
<PackagePath>runtimes/ios/native/SDL3.xcframework</PackagePath>
|
|
<Pack>true</Pack>
|
|
</None>
|
|
<None Include="$(MSBuildThisFileDirectory)..\native\android\armeabi-v7a\libSDL3.so">
|
|
<PackagePath>runtimes/android-arm/native</PackagePath>
|
|
<Pack>true</Pack>
|
|
</None>
|
|
<None Include="$(MSBuildThisFileDirectory)..\native\android\arm64-v8a\libSDL3.so">
|
|
<PackagePath>runtimes/android-arm64/native</PackagePath>
|
|
<Pack>true</Pack>
|
|
</None>
|
|
<None Include="$(MSBuildThisFileDirectory)..\native\android\x86_64\libSDL3.so">
|
|
<PackagePath>runtimes/android-x64/native</PackagePath>
|
|
<Pack>true</Pack>
|
|
</None>
|
|
<None Include="$(MSBuildThisFileDirectory)..\native\android\x86\libSDL3.so">
|
|
<PackagePath>runtimes/android-x86/native</PackagePath>
|
|
<Pack>true</Pack>
|
|
</None>
|
|
<EmbeddedJar Include="Jars\SDL3AndroidBridge.jar"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|