I have a question about projects and solutions in visual studio.
Assuming I have a solution that has three projects, two WinForms (exe) projects and one of class libraries. Is it okay to have two "exe" projects in a solution that uses the same class library?
Supplemented:
The two "exe" projects are:
1 - It is an application to register customers and other things for storage of dead archive boxes.
2 - The second and the application where the user launches the boxes.
3 - This is the shared library.
I could put the two together in one application, but the client wants it to be separate.
Today as I need to test, I go and mark the application as "startUp Project" and then build it.
Is there a technically better approach to this?