Automatically enable class library

I wrote a class library and I know how I can use it, but before I can use the library in any project, I need to add a link to the library.

Now I want to know if Visual Studio can automatically add a link to my library.

I use: Visual Studio 2012 Ultimate

+3
source share
3 answers

Yes, sort of. I don’t think there is any plugin (and should not be) that as soon as you open a project, any project, it will simply add additional libraries.

, - , . .

http://msdn.microsoft.com/en-us/library/xkh1wxd8.aspx

+2
+2

The simple answer is no. You must provide a link to your library wherever you use it. Of course, one could write a tool that finds links automatically, but this is a difficult thing. And there are Visual Studio extensions (e.g. Resharper) that offer to add a link for you. But in the end, the link should be there anyway.

-1
source

All Articles