My post-build event works, but in some situations I am quite sure it is showing an error in the console window. However, because the window closes immediately, I'm not able to read any of it.
This is the build event:
if $(ConfigurationName) == Release start xcopy /y "$(TargetDir)*.dll" "$(ProjectDir)../../bin"
Basically it copies the built dlls over to another directory.
Is there a way to force the console window invoked by start
to remain open until I close it?