Enables console logging when using debug configuration

This commit is contained in:
Thorsten Sommer 2023-02-11 23:01:13 +01:00
parent 4c6f5b59f0
commit 18fd1faedd
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -1,7 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<OutputType>WinExe</OutputType> <OutputType Condition=" '$(Configuration)' == 'Release' ">WinExe</OutputType>
<OutputType Condition=" '$(Configuration)' == 'Debug' ">Exe</OutputType>
<TargetFramework>net6.0-windows10.0.22000.0</TargetFramework> <TargetFramework>net6.0-windows10.0.22000.0</TargetFramework>
<RootNamespace>UI_WinForms</RootNamespace> <RootNamespace>UI_WinForms</RootNamespace>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>