Skip to content

Commit

Permalink
feat(Studio): Pop-up console window for Debug builds on WPF
Browse files Browse the repository at this point in the history
  • Loading branch information
psyGamer committed Oct 26, 2024
1 parent 7e5097c commit 1858e9d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Studio/CelesteStudio.WPF/CelesteStudio.WPF.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<!-- Pop up a console in debug builds for easier access to logs -->
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' != 'Debug'">
<OutputType>WinExe</OutputType>
</PropertyGroup>

<PropertyGroup>
<TargetFramework>net7.0-windows</TargetFramework>
<RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers>

Expand Down

0 comments on commit 1858e9d

Please sign in to comment.