79779948

Date: 2025-10-01 11:03:12
Score: 0.5
Natty:
Report link

If you want to do it in your CI/CD pipeline you can do the following:

# Install resx sorter tool
dotnet tool install keboo.resxsorter --global

# Use the tool with all resx files
Get-ChildItem -Path . -Filter "*.resx" -Recurse | ForEach-Object {
    ResxSorter -i $_.FullName
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alex Logvin