6 writes to NamingStyle
Microsoft.CodeAnalysis.CodeStyle (6)
MutableNamingStyle.cs (6)
21set => NamingStyle = NamingStyle with { Name = value }; 27set => NamingStyle = NamingStyle with { Prefix = value }; 33set => NamingStyle = NamingStyle with { Suffix = value }; 39set => NamingStyle = NamingStyle with { WordSeparator = value }; 45set => NamingStyle = NamingStyle with { CapitalizationScheme = value }; 54=> NamingStyle = namingStyle;
12 references to NamingStyle
Microsoft.CodeAnalysis.CodeStyle (12)
MutableNamingStyle.cs (12)
16public Guid ID => NamingStyle.ID; 20get => NamingStyle.Name; 21set => NamingStyle = NamingStyle with { Name = value }; 26get => NamingStyle.Prefix; 27set => NamingStyle = NamingStyle with { Prefix = value }; 32get => NamingStyle.Suffix; 33set => NamingStyle = NamingStyle with { Suffix = value }; 38get => NamingStyle.WordSeparator; 39set => NamingStyle = NamingStyle with { WordSeparator = value }; 44get => NamingStyle.CapitalizationScheme; 45set => NamingStyle = NamingStyle with { CapitalizationScheme = value }; 57=> new(NamingStyle);