random-file-runner/Program.cs
Ray bf6997c71b Upgraded to RyzStudio8 package
Upgraded to .NET 8
2024-06-23 17:51:44 +01:00

22 lines
520 B
C#

using RyzStudio.IO;
using System;
using System.Windows.Forms;
namespace RandomFileRunner
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.SetHighDpiMode(HighDpiMode.SystemAware);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}