I have created a solution in .NET with 4 class library projects and each project has its own functionality and own App.Config file. All these class library projects are created using .Net Framework 4.6.
Now the client wants to utilize these 4 project's functionalities in their WPF application. Here my problem is, to utilize all the 4 projects, user needs to configure all 4 App.Config files separately. But the client expects a solution with a single Config file to configure all these 4 projects.
So now I want to integrate all these project by creating one more project in the same solution which should act as a Entry or Startup project. And also the final solution should have only one common Config file.
One very important point here is, it should not be a web based project type.
Can someone tell me the .Net project type which I need to use to create an entry project?