mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-09 17:52:54 +01:00
33 lines
1.1 KiB
XML
33 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<TargetName>MoonWorksDearImGuiScaffold</TargetName>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
|
|
<StartupObject>MoonWorksDearImGuiScaffold.Program</StartupObject>
|
|
<AssemblyName>MoonWorksDearImGuiScaffold</AssemblyName>
|
|
<RootNamespace>MoonWorksDearImGuiScaffold</RootNamespace>
|
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<ApplicationIcon />
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="Content\**\*.*">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<DefaultItemExcludes>$(DefaultItemExcludes);lib\**\*</DefaultItemExcludes>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="lib\MoonWorks\MoonWorks.csproj" />
|
|
<ProjectReference Include="lib\ImGui.NET\ImGui.NET.csproj" />
|
|
</ItemGroup>
|
|
|
|
<Import Project=".\CopyMoonlibs.targets" />
|
|
</Project>
|