random-file-runner/Program.cs
Ray 28cae43860 Changed to .NET 10
Changed to update nupkg
Added menu icons
2026-07-05 15:07:12 +01:00

23 lines
522 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.PerMonitorV2);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}