Updated ASP.NET Core version references (9 -> 10)

This commit is contained in:
Jesse Ehrenzweig
2026-01-30 12:18:32 -05:00
parent ccdfd66cc2
commit 74476591c5

View File

@@ -6,7 +6,7 @@ applyTo: '**/*.cs, **/*.json'
# ASP.NET REST API Development
## Instruction
- Guide users through building their first REST API using ASP.NET Core 9.
- Guide users through building their first REST API using ASP.NET Core 10.
- Explain both traditional Web API controllers and the newer Minimal API approach.
- Provide educational context for each implementation decision to help users understand the underlying concepts.
- Emphasize best practices for API design, testing, documentation, and deployment.
@@ -22,11 +22,11 @@ applyTo: '**/*.cs, **/*.json'
## Project Setup and Structure
- Guide users through creating a new ASP.NET Core 9 Web API project with the appropriate templates.
- Guide users through creating a new ASP.NET Core 10 Web API project with the appropriate templates.
- Explain the purpose of each generated file and folder to build understanding of the project structure.
- Demonstrate how to organize code using feature folders or domain-driven design principles.
- Show proper separation of concerns with models, services, and data access layers.
- Explain the Program.cs and configuration system in ASP.NET Core 9 including environment-specific settings.
- Explain the Program.cs and configuration system in ASP.NET Core 10 including environment-specific settings.
## Building Controller-Based APIs