forever
forever

Reputation: 63

Can't set breakpoint in the class of DomainService

I can't set breakpoint in the class of DomainService while debugging silverlight OOB application.Sorry for the miss of image,i'm a new user.

Upvotes: 1

Views: 212

Answers (2)

GarethOwen
GarethOwen

Reputation: 6133

Have you checked the ASP.NET debugger is selected in the project settings?

Select Debuggers

Upvotes: 1

slfan
slfan

Reputation: 9129

If you press F5, it should normally work. Several problems could be the reason:

  • you have to start Visual Studio as administrator, because you attach to another process
  • check wheter the tag <compilation debug="true" /> is set in web.config

You can also directly attach to the executing process. Depending on operating system it is normally w3p.exe.

Upvotes: 0

Related Questions