Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Resx Sorter [![Paypal][paypal-shield]][paypal-url] [![Buy me a coffee][coffee-shield]][coffee-url] [![GitHub][github-shield]][github-url] [![Nuget][nuget-shield]][nuget-url] [![License][license-shield]][license-url]
Resx Sorter
============
[![Paypal][paypal-shield]][paypal-url] [![Buy me a coffee][coffee-shield]][coffee-url] [![Nuget][nuget-shield]][nuget-url] [![License][license-shield]][license-url] [![GitHub][github-shield]][github-url]

A simple git hook-compatible dotnet tool to sort entries in RESX (Resource) files alphabetically by key. It helps maintain consistency in localization files, reduces merge conflicts in version control, and makes it easier to scan for missing translations.

Expand Down Expand Up @@ -63,18 +65,17 @@ This project is licensed under the BSD 3-Clause License - see the [LICENSE](LICE
- [ZLogger](https://github.com/Cysharp/ZLogger)
- [ConsoleAppFramework](https://github.com/Cysharp/ConsoleAppFramework)


[paypal-shield]: https://img.shields.io/static/v1?label=PayPal&message=Donate&style=flat-square&logo=paypal&color=blue
[paypal-url]: https://www.paypal.com/donate/?hosted_button_id=MTY5DP7G8G6T4

[coffee-shield]: https://img.shields.io/static/v1?label=BuyMeCoffee&message=BuyMeCoffee&style=flat-square&logo=buy-me-a-coffee&color=yellow
[coffee-shield]: https://img.shields.io/static/v1?label=BuyMeCoffee&message=Donate&style=flat-square&logo=buy-me-a-coffee&color=orange
[coffee-url]: https://www.buymeacoffee.com/wosiu6

[nuget-shield]: https://img.shields.io/nuget/v/ResxSorter?color=green&label=NuGet
[nuget-url]: https://www.nuget.org/packages/ResxSorter

[license-shield]: https://img.shields.io/badge/License-BSD%203--Clause-orange.svg
[license-shield]: https://img.shields.io/badge/License-BSD%203--Clause-purple.svg
[license-url]: https://opensource.org/licenses/BSD-3-Clause

[github-shield]: https://img.shields.io/static/v1?label=&message=Source&style=flat-square&logo=github&color=grey
[github-shield]: https://img.shields.io/static/v1?label=&message=GitHub&style=flat-square&logo=github&color=grey
[github-url]: https://github.com/Wosiu6/dotnet-resX-sorter
5 changes: 5 additions & 0 deletions src/ResxSorter.sln
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResxSorter.Core", "ResxSort
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResxSorter", "ResxSorter\ResxSorter.csproj", "{BE8D9359-9A23-B6CC-0C14-43C8D0360E6D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{8EC462FD-D22E-90A8-E5CE-7E832BA40C5D}"
ProjectSection(SolutionItems) = preProject
..\docs\README.md = ..\docs\README.md
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down
1 change: 1 addition & 0 deletions src/ResxSorter/ResxSorter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>

<VersionPrefix>1.0.1</VersionPrefix>
</PropertyGroup>

<ItemGroup>
Expand Down
Loading