Do not exit immediately when debugging, to give a chance to examine the output.

This commit is contained in:
the_fiddler 2010-10-13 21:31:24 +00:00
parent f8cd5879b1
commit 31b80891e2

View file

@ -186,6 +186,11 @@ namespace Bind
Console.WriteLine();
Console.WriteLine("Bindings generated in {0} seconds.", ticks / (double)10000000.0);
Console.WriteLine();
if (Debugger.IsAttached)
{
Console.WriteLine("Press any key to continue...");
Console.ReadKey(true);
}
}
catch (SecurityException e)
{