I have read all of the Photino.NET documentation but it doesn't seem to mention how to build a final Release version.
Do you know the dotnet build parameters I need to provide? Or, is there a code change I need to make to the Photino template which will make it so the console window isn't displayed (see example snapshot below) when the final release version runs?
The console window (red highlight) always appears but I just want the main window (green highlight).
What I've Tried
built on Windows 10 stand-alone
c:\>dotnet publish -r win10-x64 -p:PublishSingleFile=true --self-contained true
built Linux stand-alone app:
$ dotnet publish -r linux-x64 -p:PublishSingleFile=true --self-contained true
Running Executable Launches (displays) 2 Windows
I ran the subsequent executables that are created from these builds on each of their appropriate systems (Win10, Ubuntu) & they run properly but I always get the console window in the background when they start --
I.E. you get two windows launched 1) console window 2) target app window
Main Question
Is there a way around this in Photino.NET that will only display the target app window?