coder-csharp-conventions
Installation
SKILL.md
<skill_overview> Ensure C# code follows Microsoft official guidelines and modern patterns Writing new C# code Reviewing naming conventions Using modern C# features Refactoring legacy C# code Microsoft C# Coding Conventions Microsoft Identifier Naming Framework Design Guidelines (Cwalina & Abrams) </skill_overview> <naming_conventions> <applies_to>Types, namespaces, public members, methods, properties, events, constants, enum values</applies_to> public class UserService { } public void ProcessOrder() { }