initial commit

This commit is contained in:
Arne Moerman
2024-12-15 18:39:34 +01:00
commit 0bf5277be0
15 changed files with 330 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
namespace ClosestResolution
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
}
}
}