initial commit

This commit is contained in:
2026-01-16 09:22:10 +01:00
parent 5ae1ebef0e
commit 15b2b881c7
10 changed files with 561 additions and 13 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Windows.Forms;
namespace analog_system_monitor
{
internal static class Program
{
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
Application.Run(new TrayApp());
}
}
}