disable console in release mode

This commit is contained in:
cosmonaut 2023-12-21 15:23:12 -08:00
parent 39302c66e0
commit 9d8f4f6089

View File

@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<OutputType Condition="'$(Configuration)' == 'Debug'">Exe</OutputType>
<OutputType Condition="'$(Configuration)' == 'Release'">WinExe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetName>MoonWorksDearImGuiScaffold</TargetName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>