mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2024-12-22 18:25:33 +00:00
c66a752bf5
Signed-off-by: Mary Guillemard <mary@mary.zone>
63 lines
2.9 KiB
XML
63 lines
2.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<AssemblyTitle>SDL2#</AssemblyTitle>
|
|
<AssemblyName>SDL2-CS</AssemblyName>
|
|
<Description>libSDL2 bindings for C#</Description>
|
|
<RootNamespace>SDL2</RootNamespace>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<VersionPrefix>2.28.3</VersionPrefix>
|
|
</PropertyGroup>
|
|
<PropertyGroup Label="NuGet">
|
|
<Authors>marysaka & ppy Pty Ltd & flibitijibibo</Authors>
|
|
<Title>SDL2#</Title>
|
|
<PackageId>Ryujinx.SDL2-CS</PackageId>
|
|
<PackageProjectUrl>https://github.com/Ryujinx/SDL2-CS</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/Ryujinx/SDL2-CS</RepositoryUrl>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Content Include="$(MSBuildThisFileDirectory)native\win-x64\SDL2.dll">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<PackagePath>runtimes/win-x64/native</PackagePath>
|
|
<Pack>true</Pack>
|
|
</Content>
|
|
<Content Include="$(MSBuildThisFileDirectory)native\win-arm64\SDL2.dll">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<PackagePath>runtimes/win-arm64/native</PackagePath>
|
|
<Pack>true</Pack>
|
|
</Content>
|
|
<Content Include="$(MSBuildThisFileDirectory)native\osx-x64\libSDL2.dylib">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<PackagePath>runtimes/osx-x64/native</PackagePath>
|
|
<Pack>true</Pack>
|
|
</Content>
|
|
<Content Include="$(MSBuildThisFileDirectory)native\osx-arm64\libSDL2.dylib">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<PackagePath>runtimes/osx-arm64/native</PackagePath>
|
|
<Pack>true</Pack>
|
|
</Content>
|
|
<Content Include="$(MSBuildThisFileDirectory)native\linux-x64\libSDL2.so">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<PackagePath>runtimes/linux-x64/native</PackagePath>
|
|
<Pack>true</Pack>
|
|
</Content>
|
|
<Content Include="$(MSBuildThisFileDirectory)native\linux-arm64\libSDL2.so">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<PackagePath>runtimes/linux-arm64/native</PackagePath>
|
|
<Pack>true</Pack>
|
|
</Content>
|
|
<Content Include="$(MSBuildThisFileDirectory)native\ios\**\*">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<PackagePath>runtimes/ios/native</PackagePath>
|
|
<Pack>true</Pack>
|
|
</Content>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="app.config">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
</Project>
|