Files
QCONSOLE/QuantumSVNConsole/Seeds-Lab-SVN-Dashboard/Seeds-Lab-SVN-Dashboard/Program.cs
Maxime KINTS 64ff4e7e8a FIRST
2026-05-16 23:49:06 +02:00

23 lines
535 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Seeds_Lab_SVN_Dashboard
{
internal static class Program
{
/// <summary>
/// Point d'entrée principal de l'application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new login());
}
}
}