DiscordMediaLoader/Discord Media Loader/Program.cs
Serraniel ffea67dd12 Added download form
Started Launcher
2017-03-09 20:56:48 +01:00

28 lines
693 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Discord_Media_Loader
{
static class Program
{
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
ProfileOptimization.SetProfileRoot(Application.UserAppDataPath);
ProfileOptimization.StartProfile("profile.opt");
//Application.Run(new FrmDownload());
}
}
}