Do not exit immediately when debugging, to give a chance to examine the output.
This commit is contained in:
parent
f8cd5879b1
commit
31b80891e2
1 changed files with 5 additions and 0 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue