csharp-use-standard-acronyms
@azure-tools/typespec-client-generator-core/csharp-use-standard-acronymsC# SDK names should use standard acronym casing.
C# SDK names should use standard acronym casing. This initial rule covers IP, DB, and OS.
The rule checks the C#-resolved name and respects @clientName overrides.
โ Incorrect
Section titled โโ Incorrectโmodel IpAddress { value: string;}
model CosmosDb { id: string;}โ Correct
Section titled โโ Correctโmodel IPAddress { value: string;}
model CosmosDB { id: string;}Or using @@clientName in client.tsp to override just the C# name:
@@clientName(IpAddress, "IPAddress", "csharp");