I have a project (.NET 4, but I can have also .NET 4.5) that always use the same DLL I've made (it's mine Data Layer, more or less).
Each website it's an application.
I'd like to share this Library I have to each application, so if I do an update I'll update only a "folder", and I don't need to copy/paste this Library on each Bin folder on each web application.
Is it possible?
Such as, if I create my class MyClass2013
, it will be available for each web application when I load Visual Studio:
MyClass2013 myClass = new MyClass2013()
without copy and paste the Bin's DLL (where I have the definition of this class/methods and so on) every time, for every application, keeping all of them updated if I do some edit.
Thinks to the Library System
for example: is accessible for each project, I import nothing!