Here is my design and thinking for an application, which should be capable of supporting different technologies such as WPF/ASP.Net/Mobile - I will be grateful for comments and constructive criticism.
Assemblies:
Framework
• Framework.dll • Domain.dll • WPFFramework.dll/WebFramework.dll
Application
• ApplicationLayer.dll • Bootstrapper.exe • WPF.dll/Web.dll etc
Thinking behind physical separation (i.e. assemblies):
•Minimise Physical layers for performance reasons – so have as few assemblies as possible
•Want to be able to substitute different View Technologies, so have separate application assemblies for these
•Domain likely to change more frequently than rest of framework, so place in separate assembly - if Domain changes, but interface remains the same, then only need to recompile Domain, not Framework or Application (not sure how important this is - otherwise can place domain within framework.dll)
Thinking behind logical separation (achieved by placing in separate folders):
Framework.dll
• Extension methods • Interfaces (Domain and infrastructure) • AOP code • Container code • Repository code • Types (attributes, enums, delegates) • Utilities (Copying, DateTime, Reflection etc) • Validation • View (common View utilities such as a module manager) • ViewModel (base classes) • Network (Proxies)
Domain.dll
• Types/Services
WPFFramework.dll/WebFramework.dll
• Converters/Dictionaries/Base user controls etc
Application.dll
• Application Layer (use case controllers) • ViewModels • Interfaces (Views, View Models etc)
Bootstrapper.exe (not needed for ASP application)
• Code to instantiate container and application.run etc
WPFTechnology.dll/WebTechnology.dll etc
• Windows and user controls etc