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
Break your logging code to a seperate assembly.
You can then include that assembly in the projects that should use that logger.
It keeps everything nice and clean and you'll only have to maintain one set of code rather than having to worry about each copy.