28 lines
788 B
XML
28 lines
788 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net7.0</TargetFrameworks>
|
|
<Platforms>x64</Platforms>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<LangVersion>11</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<DefaultItemExcludes>$(DefaultItemExcludes);lib\**\*</DefaultItemExcludes>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="lib\FAudio\csharp\FAudio.cs" />
|
|
<Compile Include="lib\RefreshCS\src\Refresh.cs" />
|
|
<Compile Include="lib\SDL2-CS\src\SDL2.cs" />
|
|
<Compile Include="lib\Theorafile\csharp\Theorafile.cs" />
|
|
<Compile Include="lib\WellspringCS\WellspringCS.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="MoonWorks.dll.config">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project>
|