From 502c8756b15bfbab1befc0d1162e1b470f742aa1 Mon Sep 17 00:00:00 2001 From: Marco Minerva Date: Thu, 13 Nov 2025 18:05:10 +0100 Subject: [PATCH] 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. --- .github/copilot-instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 8f138fa..f3a13a0 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -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.