insanepaul
insanepaul

Reputation: 197

Multiple asp.net development server ports

I've got a few projects and websites in my solution. When I debug a website, ports are opened for all the websites. I'm thinking this slows down my debugging. How do I switch off these extra ports rather than excluding the websites from the solution?

Upvotes: 2

Views: 560

Answers (1)

Leniel Maccaferri
Leniel Maccaferri

Reputation: 102368

I think what you want to do is this:

Set the "Always Start When Debugging" property to "false" for each of your website projects. Just click the Project in the Solution Explorer, hit F4. It's the first property in the list.

I had the same problem and this solved my problem!

Upvotes: 3

Related Questions