Reputation: 226
I have a fairly well project that I am developing right now, but I need to separate some of the components based on their intended run-time "environments."
For example:
MyNameSpace.MyProductName.Admin (parent class - helper classes) MyNameSpace.MyProductName.Admin.Terminal (child class - UI for End User: consumer) MyNameSpace.MyProductName.Admin.Database (child class - UI for DB Admin and monitoring) MyNameSpace.MyProductName.Admin.Management (child class - UI for End User: administration)
Is there a way to separate these logically in the IDE where the output will produce the following structure?
MyNameSpace\MyProductName\Admin\MyProductName.*.dlls
MyNameSpace\MyProductName\Admin\Terminal\MyProductName.*.dlls, MyProductName.Terminal.exe
MyNameSpace\MyProductName\Admin\Database\MyProductName.*.dlls, MyProductName.Database.exe
MyNameSpace\MyProductName\Admin\Management\MyProductName.*.dlls, MyProductName.Management.exe
Or will I need to create separate projects for each UI?
Thanks In Advance,
E.
Upvotes: 0
Views: 231
Reputation: 226
I was able to add another solution folder under the "MyNameSpace" solution folder.
This allowed me to separate the UI items from the application items.
Thanks Again!
Upvotes: 0
Reputation: 1263
AFAIK, a project can produce only 1 o/p, so you need to organize these as projects in a solution and add the project with the exe as the startup project for debugging.
Upvotes: 3