Chris
Chris

Reputation: 40641

Intellisense between projects in visual studio 2010

I've got a c# project that is full of intellisense comments, and this project compiles to a DLL.

Now when i add this dll as a reference in another project, i do not get intellisense when accessing the members of the original project.

Any ideas how i can get this to work?

Thanks

Upvotes: 0

Views: 365

Answers (2)

H. den Breejen
H. den Breejen

Reputation: 113

Intellisense comments? Do you mean the /// comments directly above the method definition? That gets compiled into the assembly. Intellisense should just work.

Upvotes: 0

allonym
allonym

Reputation: 1418

In the project properties, on the Build tab, check the box for "XML documentation file" to have it output XML documentation. As long as this XML is present in the directory where the dll is referenced from, you should get intellisense.

Upvotes: 5

Related Questions