Intellisense for assemblies in VS.NET

  • Thread starter Thread starter Mark
  • Start date Start date
M

Mark

When developing C# applications in VS.NET, you get intellisense descriptions
for all methods in the .NET class libraries. I've created my own .NET
assembly and included /// C# documentation of all my methods, classes, etc..
The intellisense works great when this .NET assembly project is included in
the solution I'm working on. However, if I just make a reference to the
..dll file instead of including the 'project', the comments/descriptions of
methods, classes, etc., don't show up.

How can I get these comments to show up in intellisense when other
developers use my assembly?

Thanks in advance!

Mark
 
When developing C# applications in VS.NET, you get intellisense descriptions
for all methods in the .NET class libraries. I've created my own .NET
assembly and included /// C# documentation of all my methods, classes, etc..
The intellisense works great when this .NET assembly project is included in
the solution I'm working on. However, if I just make a reference to the
.dll file instead of including the 'project', the comments/descriptions of
methods, classes, etc., don't show up.

How can I get these comments to show up in intellisense when other
developers use my assembly?

Thanks in advance!

Mark

You need to make a reference to the project not the dll.
 
Interesting. Is there any other way to do it? That seems rather limiting.
For example, if I built a .DLL and wanted to share it with you, but didn't
want you to see the original source code, I'd certainly want you to be able
to have intellisense or you'd never ever use it ...

Comments? Thanks again.

Mark
 
Interesting. Is there any other way to do it? That seems rather limiting.
For example, if I built a .DLL and wanted to share it with you, but didn't
want you to see the original source code, I'd certainly want you to be able
to have intellisense or you'd never ever use it ...

Comments? Thanks again.

Check out this google group post it explains all
http://tinyurl.com/2usqe
 
Mark said:
How can I get these comments to show up in intellisense when other
developers use my assembly?

Try copying the documentation XML into the same folder as your assembly.

--
There are 10 kinds of people. Those who understand binary and those who
don't.

http://code.acadx.com
(Pull the pin to reply)
 
Back
Top