2020-04-15 08:05:16 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>netstandard2.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>
|
2021-12-05 14:10:07 +00:00
|
|
|
<VersionPrefix>2.0.19</VersionPrefix>
|
2020-04-15 08:05:16 +00:00
|
|
|
</PropertyGroup>
|
2020-04-16 10:04:04 +00:00
|
|
|
<PropertyGroup Label="NuGet">
|
2021-12-05 14:10:07 +00:00
|
|
|
<Authors>Thog & ppy Pty Ltd & flibitijibibo</Authors>
|
2020-04-15 08:05:16 +00:00
|
|
|
<Title>SDL2#</Title>
|
2021-12-05 14:10:07 +00: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 08:05:16 +00:00
|
|
|
</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 08:35:36 +00: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 08:05:16 +00:00
|
|
|
<Content Include="$(MSBuildThisFileDirectory)native\win-x86\SDL2.dll">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
<PackagePath>runtimes/win-x86/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>
|
2021-07-22 08:34:55 +00: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 05:53:00 +00:00
|
|
|
<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-x86\libSDL2.so">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
<PackagePath>runtimes/linux-x86/native</PackagePath>
|
|
|
|
<Pack>true</Pack>
|
|
|
|
</Content>
|
2020-04-15 08:05:16 +00:00
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<Content Include="app.config">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
</ItemGroup>
|
2013-04-04 00:09:40 +00:00
|
|
|
</Project>
|