Intellisense for assemblies in VS.NET

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
 
M

Mark mm

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.
 
M

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.

Mark
 
M

Mark mm

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
 
F

Frank Oquendo

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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top