mirror of
https://github.com/Novetus/Novetus_src.git
synced 2025-01-31 09:41:33 +02:00
33 lines
705 B
C#
33 lines
705 B
C#
#region Usings
|
|
#if !BASICLAUNCHER
|
|
using NLog;
|
|
#endif
|
|
using Novetus.Core;
|
|
using System;
|
|
using System.IO;
|
|
using System.Windows.Forms;
|
|
#endregion
|
|
|
|
namespace Novetus.Bootstrapper
|
|
{
|
|
static class NovetusLaunch
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
|
|
if (!Directory.Exists(GlobalPaths.LogDir))
|
|
{
|
|
Directory.CreateDirectory(GlobalPaths.LogDir);
|
|
}
|
|
|
|
Application.Run(new NovetusLaunchForm());
|
|
}
|
|
}
|
|
}
|