2023-12-22 00:03:12 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
2023-12-22 00:23:12 +01:00
|
|
|
<OutputType Condition="'$(Configuration)' == 'Debug'">Exe</OutputType>
|
|
|
|
<OutputType Condition="'$(Configuration)' == 'Release'">WinExe</OutputType>
|
2023-12-22 00:03:12 +01:00
|
|
|
<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>
|