How to merge multiple c# Projects with same default namespace but different assembly names

300 Views Asked by At

i am migrating my old code from VB6 to .net(C#). after rewriting code modules and testing them now started making my application.

i have multiple projects in my solution( Like Framework ). compiler giving Dll files for each project. i want to merge all projects in to one project so that i can use one Dll file. How to do that.

My Project Details :

Project 1 : Windows Application ( which uses all Class Library references)

Project 2 : Class Library Assembly Name : MyApp.UI.Design
Project 3 : Class Library Assembly Name : MyApp.UI.Design.Themes
Project 4 : Class Library Assembly Name : MyApp.UI.Design.Controllers
Project 4 : Class Library Assembly Name : MyApp.UI.Design.xyz

and so on....
total 27 class Library Projects

  • Default NameSpace : MyApp.UI for all Class Library Projects in different locations.

I am using them by adding reference to them in my Application.
I want to merge all Class Library projects into One Project so that i can use only one Dll file instead of multiple Dll Files.

Detailed Code Sample Project or Code Snippet how to do - will be appreciated.

0

There are 0 best solutions below