guard to prevent from accidentally releasing with forcing the debugger to attach

This commit is contained in:
dlprows 2023-10-09 23:00:30 -06:00
parent 68d5154756
commit 160bedd461

View File

@ -6,8 +6,10 @@ internal class Program
{ {
static void Main(string[] args) static void Main(string[] args)
{ {
#if DEBUG
// Uncomment this line of code to allow for debugging // Uncomment this line of code to allow for debugging
//while (!System.Diagnostics.Debugger.IsAttached) { System.Threading.Thread.Sleep(100); } //while (!System.Diagnostics.Debugger.IsAttached) { System.Threading.Thread.Sleep(100); }
#endif
SDWrapper.Run(args); SDWrapper.Run(args);
} }