How To Share Files Code Between Visual Studio Projects
Visual Studio “Solutions” are able to store multiple projects and assemblies. Usually, they’re fairly separate, but what if you need to share code among them? One of the simplest ways to do this properly is with symlinks. Linking Files Across Projects First, you should ask yourself if symlinks is really the best method to handle this. Sharing code between projects sounds like a great use case for just using an external class library....