You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that system culture affects the usings ordering. I use cs-CZ culture on my PC, but our CI has en-US. This creates different lists in different environments.
It seems that system culture affects the usings ordering. I use
cs-CZ
culture on my PC, but our CI hasen-US
. This creates different lists in different environments.For example this:
gets sorted like this in Czech:
This is because in Czech the
ch
is a "single letter" which is part of our alphabet and is placed betweenh
andi
.When ordering the usings it should probably just always use something like
Ordinal
(https://learn.microsoft.com/en-us/dotnet/standard/base-types/best-practices-strings#recommendations-for-string-usage).This started happening after upgrading from version
0.25.0
to0.26.3
as part of our .net 8 upgrade.The text was updated successfully, but these errors were encountered: