Update C# version references to C# 14 and ASP.NET Core 10 (#397)

This commit is contained in:
Daniel Abbatt 2025-11-12 23:07:55 +00:00 committed by GitHub
parent 17a3ac5931
commit 8f59b61fbe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,7 +6,7 @@ applyTo: '**/*.cs'
# C# Development # C# Development
## C# Instructions ## C# Instructions
- Always use the latest version C#, currently C# 13 features. - Always use the latest version C#, currently C# 14 features.
- Write clear and concise comments for each function. - Write clear and concise comments for each function.
## General Instructions ## General Instructions
@ -37,7 +37,7 @@ applyTo: '**/*.cs'
- Explain the purpose of each generated file and folder to build understanding of the project structure. - 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. - 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. - 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.
## Nullable Reference Types ## Nullable Reference Types