static void Main(string[] args) { try { Console.CursorVisible = false; var host = new FrameBufferHost(() => new App()); host.Run(); } finally { Console.CursorVisible = true; } }
public static void Main(string[] args) { try { SamplesApp.App.ConfigureFilters(); // Enable tracing of the host Console.CursorVisible = false; var host = new FrameBufferHost(() => new SamplesApp.App(), args); host.Run(); } finally { Console.CursorVisible = true; } }
static void Main(string[] args) { try { Console.CursorVisible = false; // SKSwapChain Panel is not supported inside of Uno yet. SKSwapChainPanel.RaiseOnUnsupported = false; var host = new FrameBufferHost(() => new App(), args); host.Run(); } finally { Console.CursorVisible = true; } }