Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

one DLL, multiple projects?

Is it possible to force my C# solution file to make a single DLL containing all the projects in the solution, instead of one DLL per project? This dude says that isn't possible but I notice that's a post from 2004. I'm using Visual Studio 2008 Team System and it's a C# application.

like image 370
Sarah Vessels Avatar asked Jan 06 '10 22:01

Sarah Vessels


1 Answers

No. Each project will compile into a separate library or application.

You can, however, merge these together into a single DLL or EXE file using ILMerge post compilation.

like image 147
Reed Copsey Avatar answered Oct 05 '22 17:10

Reed Copsey