4

It's always been possible to add references for your project in Visual Studio. These show up under the special "References" folder in the solution explorer. You can also add service references, which also get put under their own special folder. I'd like to create my own reference type, complete with special folder, that other projects can use. What is this called, and where is some good documentation on how to do this?

gzak
  • 3,908
  • 6
  • 33
  • 56

1 Answers1

1

You mean you want to create a library of classes / a .dll?

http://snippets.dzone.com/posts/show/3861

Edwin
  • 13
  • 1
  • 1
    [Are answers that just contain links elsewhere really “good answers”?](http://meta.stackexchange.com/questions/8231/are-answers-that-just-contain-links-elsewhere-really-good-answers) – Bart Dec 08 '11 at 22:19
  • Thanks Bart, for that link. You're the man!! – eeerahul Dec 09 '11 at 06:42