Open tthiery opened 2 years ago
Version Used: .NET 6.0.100
Steps to Reproduce:
dotnet new editorconfig
private static Lazy<Dictionary<Type, Type>> s_lazyConverters = new( ... )
private static readonly Lazy<Dictionary<Type, Type>> s_lazyConverters = new( ... )
s_
private static readonly Lazy<Dictionary<Type, Type>> LazyConverters = new( .. )
Expected Behavior: A private field remains camelCase / s_camelCase
Actual Behavior: A private field ended up PascalCase
moved this to https://github.com/dotnet/templating as that is where the template lives but keeping myself assigned as I investigate this.
@arkalyanms do you have any ideas on how to manage it?
Version Used: .NET 6.0.100
Steps to Reproduce:
dotnet new editorconfig
private static Lazy<Dictionary<Type, Type>> s_lazyConverters = new( ... )
private static readonly Lazy<Dictionary<Type, Type>> s_lazyConverters = new( ... )
s_
) ... IMHO: Bug .. changes to thisprivate static readonly Lazy<Dictionary<Type, Type>> LazyConverters = new( .. )
Expected Behavior: A private field remains camelCase / s_camelCase
Actual Behavior: A private field ended up PascalCase