mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2024-12-23 04:45:28 +00:00
25 lines
740 B
XML
25 lines
740 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<Platforms>x64</Platforms>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<EnableDefaultItems>false</EnableDefaultItems>
|
|
<AssemblyName>SDL2-CS</AssemblyName>
|
|
<RootNamespace>SDL2</RootNamespace>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Include="src\SDL2.cs" />
|
|
<Compile Include="src\SDL2_image.cs" />
|
|
<Compile Include="src\SDL2_mixer.cs" />
|
|
<Compile Include="src\SDL2_ttf.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="SDL2-CS.dll.config">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project>
|