I am facing problem with debugging my 64 bit application thru a project of type class library ( C#). Here are the steps:
- I have a class library project.
- ‘Start external program’ in debug settings is set to a 64 bit application.
- Press F5 to start the application
- Break points are not getting hit.
And if I manually start the application and then attach my project thru attach to process then everything works fine.
Any hint to resolve it would be really helpful.
Ok problem was different. Actually target framework for application is framwork 4.0. And my class library project is 3.5 based. Changing it to 4.0 resolved the problem.