mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2025-02-02 06:41:08 +00:00
.NET Core 2.0 support!
This commit is contained in:
parent
912569d705
commit
11adade8c2
25
SDL2-CS.Core.csproj
Normal file
25
SDL2-CS.Core.csproj
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
<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" />
|
||||||
|
<Compile Include="src\LPUtf8StrMarshaler.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="SDL2-CS.dll.config">
|
||||||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
|
</None>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
Loading…
Reference in a new issue