How to stop MonoDevelop from opening a Safari window while debugging?

Is there a way to prevent MonoDevelop from opening a Safari window (or another browser) when debugging a website? I still want it to start the XSP web server and enter debug mode.

The reason is because I delete the server code debugged from another place, and I do not want to close unwanted browser windows again and again.

+4
source share
1 answer

A bit of a hack, but now I just call window.close right after loading the page from JavaScript.

+1
source

Source: https://habr.com/ru/post/1383443/


All Articles