Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cant Step into the project while debugging

Status
Not open for further replies.

sajidi99

Programmer
Jun 7, 2005
53
SE
hi,

I have several projects in a C# windows application.

The problem is that i when i try to debug, I cant step into the projects other than the main project. These projects consists of simple C# classes.

any ideas?
 
did you include all your projects in one solution? or did you just reference all the dll's?

You should have one solution open with multiple projects inside. Then you can put break points in any project and debug at runtime.
 
What style of reference did you create? You'll probably want to have created a "project" reference, and not just browse out to the DLLs.

Chip H.


____________________________________________________________________
If you want to get the best response to a question, please read FAQ222-2244 first
 

yes, I have got all the projects under the same solution and also I have referenced the dlls as well....but still a method is steped over if it belongs to other project' class!

 
Possibly stupid question: You're hitting F11 (step into) and not F10 (step over) when stepping through?

(assuming you're using the default key mappings)

Chip H.


____________________________________________________________________
If you want to get the best response to a question, please read FAQ222-2244 first
 
hi chiph and JurkMonkey,

thx for all ur suggestions. I found out wat i was doing wrong ... i was pointing all the other projects' dlls to their "release" folders and not the "debug" folders ... hence everything was getting steped over. I ve corrected the references now n all working fine!

Cheers for help
Saj
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top