abarr
abarr

Reputation: 1140

I want to debug an ASP.NET MVC app in IIS using a custom URL defined in HOSTS

I am having trouble setting up VS2010 so I can debug in IIS:

Any good resources fro setting this up?

Upvotes: 0

Views: 1582

Answers (1)

Nicolas Bottarini
Nicolas Bottarini

Reputation: 239

Deploy your application to IIS and, when it is running, try to attach to the process from the Visual Studio Debugger (in Debug / Attach to Process). Make sure your web.config have debug mode turned on and the assemblies are compiled with debug symbols.

Upvotes: 1

Related Questions