2022-10-15 16:53:24 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using LibreHardwareMonitor.Hardware;
|
2022-11-13 14:39:29 +01:00
|
|
|
|
using CommonHelpers;
|
2022-10-15 16:53:24 +02:00
|
|
|
|
|
|
|
|
|
|
namespace FanControl
|
|
|
|
|
|
{
|
|
|
|
|
|
internal class Program
|
|
|
|
|
|
{
|
2022-11-11 19:56:08 +01:00
|
|
|
|
static void Main(string[] args)
|
2022-11-15 17:00:13 +01:00
|
|
|
|
{
|
2022-11-16 22:32:10 +01:00
|
|
|
|
ApplicationConfiguration.Initialize();
|
|
|
|
|
|
|
2022-11-12 13:56:15 +01:00
|
|
|
|
Application.Run(new FanControlForm());
|
2022-11-11 19:56:08 +01:00
|
|
|
|
}
|
2022-10-15 16:53:24 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|