1---2name: project-setup3description: Create or reorganize .NET solutions with clean project boundaries, repeatable SDK settings, and a maintainable baseline for libraries, apps, tests, CI, and local development. USE FOR: creating a new .NET solution or restructuring an existing one; setting up Directory.Build.props, shared package management, or repo-wide defaults; defining project. DO NOT USE FOR: unrelated stacks; generic tasks that do not need this specific guidance. INVOKES: inspect the repository context, edit targeted files, and run relevant build, test, lint, or validation commands when changes are made.4---56# .NET Project Setup78## Trigger On910- creating a new .NET solution or restructuring an existing one11- setting up `Directory.Build.props`, shared package management, or repo-wide defaults12- defining project layout for apps, libraries, and test projects1314## Workflow15161. Start from the app model and deployment target, then choose the smallest correct SDK and target framework set.172. Use solution folders and project names that reflect bounded contexts or product areas, not temporary implementation details.183. Centralize shared build settings, analyzer rules, nullable context, and package versions where it reduces duplication without hiding important differences.194. Create test projects and CI hooks early so new projects do not drift into unverified templates.205. Prefer project references and composition over circular dependencies or utility dumping grounds.216. Document the local build, test, and run path in repo docs or `AGENTS.md` when the workflow is not obvious.2223## Current Upstream Notes2425- The August 2026 "Build apps with .NET" Learn overview reinforces app-model-first setup: console, web, worker, desktop, mobile, cloud, and AI entry points should drive SDK/template choice.26- `.NET SDK 10.0.400` is the current 10.0.4xx feature band. It expands file-based app support, adds Microsoft.Testing.Platform `--project` and `--solution` selection to `dotnet test`, accepts `@` as the `dotnet new` option separator, and fixes hardlink and incremental-build paths. Keep `global.json`, workloads, and CI images explicit for the selected feature band.2728## Deliver2930- a coherent solution structure31- shared build defaults that are easy to reason about32- starter quality and testing hooks for future work3334## Validate3536- projects have explicit responsibility boundaries37- shared MSBuild settings do not accidentally override platform-specific needs38- a new contributor can build and test the repo without guessing3940## References4142- [patterns.md](references/patterns.md): solution layout conventions, `Directory.Build.props`, `Directory.Build.targets`, Central Package Management, `global.json`, `nuget.config`, analyzers, multi-targeting, and source link43- [templates.md](references/templates.md): `dotnet new` templates for console apps, class libraries, ASP.NET Core APIs, worker services, Blazor, test projects, .NET Aspire, and gRPC services