Nerfed/Nerfed.Runtime/Nerfed.Runtime.csproj

36 lines
1.2 KiB
XML
Raw Normal View History

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
<ItemGroup>
<ProjectReference Include="Libraries\ImGui.NET\src\ImGui.NET\ImGui.NET.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets\**\*.*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
2024-07-05 12:56:37 +02:00
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
2024-07-05 12:56:37 +02:00
<PublishAot>true</PublishAot>
<InvariantGlobalization>true</InvariantGlobalization>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<Import Project=".\CopyLibs.targets" />
2024-07-05 12:56:37 +02:00
</Project>