2020-04-15 17:35:16 +09:30
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
2023-03-08 11:51:09 +03:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2020-04-15 17:35:16 +09:30
|
|
|
<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>
|
2022-11-18 18:04:32 +01:00
|
|
|
<VersionPrefix>2.27.0</VersionPrefix>
|
2020-04-15 17:35:16 +09:30
|
|
|
</PropertyGroup>
|
2020-04-16 19:34:04 +09:30
|
|
|
<PropertyGroup Label="NuGet">
|
2022-11-18 18:04:32 +01:00
|
|
|
<Authors>marysaka & ppy Pty Ltd & flibitijibibo</Authors>
|
2020-04-15 17:35:16 +09:30
|
|
|
<Title>SDL2#</Title>
|
2022-11-18 18:04:32 +01:00
|
|
|
<PackageId>Ryujinx.SDL2-CS</PackageId>
|
|
|
|
<PackageProjectUrl>https://github.com/Ryujinx/SDL2-CS</PackageProjectUrl>
|
|
|
|
<RepositoryUrl>https://github.com/Ryujinx/SDL2-CS</RepositoryUrl>
|
2020-04-15 17:35:16 +09:30
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<Content Include="$(MSBuildThisFileDirectory)native\win-x64\SDL2.dll">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
<PackagePath>runtimes/win-x64/native</PackagePath>
|
|
|
|
<Pack>true</Pack>
|
|
|
|
</Content>
|
2021-07-22 20:35:36 +12:00
|
|
|
<Content Include="$(MSBuildThisFileDirectory)native\win-arm64\SDL2.dll">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
<PackagePath>runtimes/win-arm64/native</PackagePath>
|
|
|
|
<Pack>true</Pack>
|
|
|
|
</Content>
|
2020-04-15 17:35:16 +09:30
|
|
|
<Content Include="$(MSBuildThisFileDirectory)native\osx-x64\libSDL2.dylib">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
<PackagePath>runtimes/osx-x64/native</PackagePath>
|
|
|
|
<Pack>true</Pack>
|
|
|
|
</Content>
|
2021-07-22 20:34:55 +12:00
|
|
|
<Content Include="$(MSBuildThisFileDirectory)native\osx-arm64\libSDL2.dylib">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
<PackagePath>runtimes/osx-arm64/native</PackagePath>
|
|
|
|
<Pack>true</Pack>
|
|
|
|
</Content>
|
2020-12-02 14:53:00 +09:00
|
|
|
<Content Include="$(MSBuildThisFileDirectory)native\linux-x64\libSDL2.so">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
<PackagePath>runtimes/linux-x64/native</PackagePath>
|
|
|
|
<Pack>true</Pack>
|
|
|
|
</Content>
|
2023-03-08 11:51:03 +03:00
|
|
|
<Content Include="$(MSBuildThisFileDirectory)native\ios\**\*">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
<PackagePath>runtimes/ios/native</PackagePath>
|
|
|
|
<Pack>true</Pack>
|
|
|
|
</Content>
|
2020-04-15 17:35:16 +09:30
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<Content Include="app.config">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
</ItemGroup>
|
2013-04-03 20:09:40 -04:00
|
|
|
</Project>
|