From 74476591c5fd301c8d75df95173d070265a34b70 Mon Sep 17 00:00:00 2001 From: Jesse Ehrenzweig <130576273+verdantburrito@users.noreply.github.com> Date: Fri, 30 Jan 2026 12:18:32 -0500 Subject: [PATCH] Updated ASP.NET Core version references (9 -> 10) --- instructions/aspnet-rest-apis.instructions.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/instructions/aspnet-rest-apis.instructions.md b/instructions/aspnet-rest-apis.instructions.md index c550ae38..ed68c03a 100644 --- a/instructions/aspnet-rest-apis.instructions.md +++ b/instructions/aspnet-rest-apis.instructions.md @@ -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