MoonWorksDearImGuiScaffold/MoonWorksDearImGuiScaffold.csproj
2023-12-21 15:23:12 -08:00

34 lines
1.2 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType Condition="'$(Configuration)' == 'Debug'">Exe</OutputType>
<OutputType Condition="'$(Configuration)' == 'Release'">WinExe</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>