You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am writing an otherwise-100% console-based app that shows WPF-based UI in one certain circumstance. Having WPF imply WinExe would break my project's intended use-case. If I can workaround this by moving all the WPF stuff into a DLL, that's fine by me.
If a project file specifies an
OutputType
ofExe
, we should automatically change it toWinExe
if any of the following are true:TargetPlatformIdentifier
iswindows
(which will be the case if theTargetFramework
isnet5.0-windows
UseWindowsForms
orUseWPF
is true (this will cover projects that target .NET Core 3.x and thus don't have theTargetPlatformIdentifier
set toWindows
The text was updated successfully, but these errors were encountered: