mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-23 12:30:50 +01:00
edab306139
(cherry picked from commit 445d838c71
)
17 lines
353 B
C#
17 lines
353 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace splash_xcp_ng
|
|
{
|
|
static class Program
|
|
{
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
Application.Run(new SplashForm());
|
|
}
|
|
}
|
|
}
|