Reputation: 3937
Not starting debugging after putting <httpRuntime enableVersionHeader="false"/>
in webconfig. After commented out this line its working fine.I am using Visual Studio 2008.
While debugging following things are happening, debugger icon will be disabled, starts building, successfully completed, Then it stops and enable the debugger icon,
Upvotes: 1
Views: 539
Reputation: 470
This article mentions that the version header tells Visual Studio which version of .NET is in use. You only want to change it to false for release builds.
Upvotes: 1