2024-07-05 12:21:17 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2024-07-05 14:13:09 +02:00
|
|
|
|
<PropertyGroup>
|
2024-07-05 12:56:37 +02:00
|
|
|
|
<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>
|
2024-07-11 23:46:32 +02:00
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
<Configurations>Debug;Test;Release</Configurations>
|
|
|
|
|
<Platforms>x64</Platforms>
|
2024-07-05 12:56:37 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2024-07-11 23:46:32 +02:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<DefaultItemExcludes>$(DefaultItemExcludes);Libraries\**\*</DefaultItemExcludes>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
|
|
|
|
|
<DefineConstants>TRACE;LOG_INFO;PROFILING</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Test|x64' ">
|
|
|
|
|
<DefineConstants>TRACE;LOG_ERROR;PROFILING</DefineConstants>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
|
|
|
|
|
<DefineConstants>TRACE;LOG_ERROR</DefineConstants>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-07-19 15:24:50 +02:00
|
|
|
|
<Compile Include="Libraries\SDL2CS\src\SDL2.cs" />
|
|
|
|
|
<Compile Include="Libraries\RefreshCS\RefreshCS.cs" />
|
|
|
|
|
<Compile Include="Libraries\FAudio\csharp\FAudio.cs" />
|
|
|
|
|
<Compile Include="Libraries\WellspringCS\WellspringCS.cs" />
|
|
|
|
|
<Compile Include="Libraries\dav1dfile\csharp\dav1dfile.cs" />
|
|
|
|
|
<Compile Include="Libraries\ImGui.NET\src\ImGui.NET\**\*.cs" />
|
2024-07-11 23:46:32 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-07-05 12:56:37 +02:00
|
|
|
|
</Project>
|