Using the same modules in multiple projects

Posted by Andreas Vinther on Stack Overflow See other posts from Stack Overflow or by Andreas Vinther
Published on 2010-12-30T05:36:13Z Indexed on 2010/12/30 7:54 UTC
Read the original article Hit count: 195

I'm using Visual Studio 2010 and coding in VB.NET.

My problem is that I've collected all the modules I've written and intend to reuse and placed them in a separate folder. When I want to add a module from the above folder to any given project, it takes a copy of the module and places in the project's source code folder, instead of referencing the module in the folder containing all the other modules.

Is it possible to include a module in my project and leave it in the folder with all the other modules, so that when I improve upon a module, it'll affect all the projects that uses/references that module. Instead of me having to manually copy the new module to all the projects that uses/references the module. Right now I have multiple instances of the exact same module that i need to update manually when I improve code or add functionality?

© Stack Overflow or respective owner

Related posts about .NET

Related posts about vb.net