Remote Debugging

It appears remove debugging for a standard app in Visual Studio isn’t easy like it is for a UWP app You need to copy the built exe to the remote computer every time you build the project. You can automate this by creating a post-build event in which you can do practically everything (you can […]

Read More

Break at source of an exception / error

You are getting a catch block triggered, but you don’t know what the source of the error was Menu > Debug > Windows > Exception Settings Turn on “Common Language Runtime Exceptions” Now you will get a break on the line where the exception occurs

Read More