You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rdpwrap/src-csharp/RDPConf/Program.cs

16 lines
315 B

// Copyright 2026 sjackson0109 — Apache License 2.0
//
// RDPConf — WinForms configuration GUI entry point.
namespace RDPConf;
internal static class Program
{
[STAThread]
internal static void Main()
{
ApplicationConfiguration.Initialize();
Application.Run(new MainForm());
}
}