Isso é possível, e é feito de uma maneira diferente, dependendo se o aplicativo está configurado como um "Web Site Project" ou um "Web Application Project" no Visual Studio 2010.
Para um projeto de aplicativo da Web:
Right click on the project file in question, and open 'Properties'.
There, go to the 'Web' tab, and change the Start Action to 'Don't open
a page. Wait for a request from an external application.' This will
prevent it from spawning a page automatically, although you can still
manually go to the page to debug it.
answered Dec 23 '11 at 0:09 Brisbe42 https://superuser.com/users/8627/brisbe42
Para um projeto de site:
In VS2010, right click on the project node in the Solution Explorer
then press Property Pages on the context menu. Alternatively, simply
press Shift + F4 to open Property Pages. Then press Start Options on
left menu and select the "Don't open a page..." radio button.
Answered by: Daniel Macias https://superuser.com/users/113770/daniel-macias
Eu gostaria de marcar Daniel e Brisbe42 como tendo a resposta correta. Talvez o Meta possa ajudar a resolver isso. Então, aqui estão suas respostas, ambas incluídas em uma resposta - ambas estão corretas, dependendo do contexto.