A C # project will produce only one assembly output (DLL or EXE). Additional assemblies will be included from links that are not installed in the GAC. For example, if you add a link to another project in the solution, it will copy the assembly of this project to the current bin folder of the project.
Check the bin folder after the build to see what was created and enabled. eg<project folder>/bin/Debug
source
share