2024-07-05 12:21:17 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2024-07-05 14:13:09 +02:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<DefaultItemExcludes>$(DefaultItemExcludes);Libraries\**\*</DefaultItemExcludes>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2024-07-05 12:56:37 +02:00
|
|
|
|
<ItemGroup>
|
2024-07-05 14:13:09 +02:00
|
|
|
|
<Compile Include="Libraries\SDL2CS\src\SDL2.cs" />
|
2024-07-05 13:41:59 +02:00
|
|
|
|
<Compile Include="Libraries\RefreshCS\RefreshCS.cs" />
|
2024-07-05 14:13:09 +02:00
|
|
|
|
<Compile Include="Libraries\FAudio\csharp\FAudio.cs" />
|
|
|
|
|
<Compile Include="Libraries\WellspringCS\WellspringCS.cs" />
|
|
|
|
|
<Compile Include="Libraries\dav1dfile\csharp\dav1dfile.cs" />
|
2024-07-05 12:56:37 +02:00
|
|
|
|
</ItemGroup>
|
2024-07-05 12:21:17 +02:00
|
|
|
|
|
2024-07-05 12:56:37 +02:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2024-07-05 14:32:58 +02:00
|
|
|
|
<Nullable>disable</Nullable>
|
2024-07-05 12:56:37 +02:00
|
|
|
|
<PublishAot>true</PublishAot>
|
|
|
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2024-07-05 14:46:43 +02:00
|
|
|
|
<Import Project=".\CopyLibs.targets" />
|
2024-07-05 12:56:37 +02:00
|
|
|
|
</Project>
|