Is it possible in C # to share code between Visual Studio projects without having to distribute the DLL?
I support some software consisting of several Visual Studio C # projects, each building for a simple console executable. There is a lot of common code between the projects that I would like to check out. I believe that I can put code in a class library project, but I would prefer to avoid DLL references for distribution with each of the executable files.
Is there any way around this? I'm new to C #, so maybe I think about it anyway - are there any alternative suggestions?
source
share