Share c# class source code between several projects

Posted by phq on Stack Overflow See other posts from Stack Overflow or by phq
Published on 2010-04-19T11:17:52Z Indexed on 2010/04/19 11:23 UTC
Read the original article Hit count: 526

Filed under:
|
|

I have written a class that will handle internal logging in my application. Now I want to use this class in another new and totally separate project.

I could simply copy the file to the new project folder, but I would like to only have one copy of it to maintain so that all changes in it will apply to both projects over time.

I can use the "add existing file", but where do I put the file so that the next developer knows that it is required. I have once had a "shared" folder for this but one time that folder was not brought into the next development computer.

What is the best way to organize this so that it makes most sense for new maintainers and minimizes the risk for broken links in projects.

© Stack Overflow or respective owner

Related posts about c#

Related posts about visual-studio