Update C# version in guidelines to C# 14

Updated the copilot-instructions.md file to reflect the use of the latest version of C#, changing the reference from "C# 13" to "C# 14". This ensures the guidelines remain up-to-date with the latest language features.
This commit is contained in:
Marco Minerva
2025-11-13 18:05:10 +01:00
parent 522da4d5d0
commit 502c8756b1
+1 -1
View File
@@ -1,7 +1,7 @@
## General
- Make only high confidence suggestions when reviewing code changes.
- Always use the latest version C#, currently C# 13 features.
- Always use the latest version C#, currently C# 14 features.
- Write code that is clean, maintainable, and easy to understand.
- Only add comments rarely to explain why a non-intuitive solution was used. The code should be self-explanatory otherwise.
- Don't add the UTF-8 BOM to files unless they have non-ASCII characters.