Visual Studio extension for mostly legacy project templates just in case you find yourself in a restricted development scenario. The templates help when you want to get a small utilities made quickly, by starting with a well architected solution that is familiar. The extension has project templates that create a sample application that targets specific generations of Windows and/or .NET frameworks and contain example screens and processes. Each solution contains two projects, the app project which should be set as the startup project, and a "Core" library. The core library is setup broadly for business logic, and really everything not specific to the app (presentation layer). For utilities that I know will always remain very small, two projects are plenty. If your app could be more than that however, it would be worth it to break the core library into say services, domains, models, etc. Whatever your design pattern calls for. |