Skip to content

Commit

Permalink
Improve user experience
Browse files Browse the repository at this point in the history
  • Loading branch information
Xwilarg committed Jun 19, 2023
1 parent c7fbfba commit 5385edd
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,17 @@ Easily export resx files into one file, and import them back
## Explanations

Sometimes you have a project with many .resx file, and modifying all of them is a pain, especially for someone from the outside \
Thanks to this program, easily export all your resources in one file, modify them elsewhere and reimport them
Thanks to this program, easily export all your resources in one file, modify them elsewhere and reimport them

## How to use

- Download the latest version from the Release page
- Launch the program, it'll then ask you if you want to import or export
- Enter 'import' and enter the path to the folder you want to extract the resx from, the program will then create you a file called Output.resx
- Once you are done with your modifications, start the program again and enter 'export', then enter the path to the modified Output.resx file (or however you wrote it)

## TODO

- Handle resources other than strings
- Handle languages others than C# (for now the program launch ResGen with it)
- Proper exception and error handling
5 changes: 4 additions & 1 deletion ResourcesExporterSharp/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,7 @@
else
{
Console.WriteLine("Invalid command");
}
}

Console.WriteLine("Press any key to close the program");
Console.ReadKey();

0 comments on commit 5385edd

Please sign in to comment.