34 lines
1.1 KiB
XML
34 lines
1.1 KiB
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
<PropertyGroup>
|
||
|
<OutputType>Exe</OutputType>
|
||
|
<TargetFramework>net6.0</TargetFramework>
|
||
|
<TargetName>MoonWorksImGuiExample</TargetName>
|
||
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||
|
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
|
||
|
<LangVersion>8.0</LangVersion>
|
||
|
<StartupObject>MoonWorksImGuiExample.Program</StartupObject>
|
||
|
<AssemblyName>MoonWorksImGuiExample</AssemblyName>
|
||
|
<RootNamespace>MoonWorksImGuiExample</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>
|