forked from MyBlackMIDIScore/QQS-English
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
35 lines (34 loc) · 823 Bytes
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using QQS_UI.Core;
using SharpExtension.Collections;
using SharpExtension;
using System.IO;
namespace QQS_UI
{
public class Program
{
[STAThread]
private static void Main(string[] args)
{
Console.Title = "QMIDICore Quaver Stream Renderer";
#if !DEBUG
try
{
#endif
Application app = new Application();
_ = app.Run(new MainWindow());
#if !DEBUG
}
catch (Exception ex)
{
Console.WriteLine($"An error occurred:\n{ex.Message}\nStack Trace:\n{ex.StackTrace}");
}
#endif
}
}
}