PowerShell/docs/dev-process/resx-files.md

42 lines
1.2 KiB
Markdown
Raw Normal View History

# Resources
Resources are `.resx` files with string values that we use for error messages and such.
They live in `src\<project>\resources` folders.
At the moment `dotnet cli` doesn't support generating C# bindings (strongly typed resource files).
We are using our own `Start-ResGen` to generate them.
Usually it's called as part of the regular build with
```
2016-07-14 04:49:58 +02:00
PS C:\> Start-PSBuild -ResGen
```
If you see compilation errors related to resources, try to call `Start-ResGen` explicitly.
```
PS C:\> Start-ResGen
```
## Editing `.resx` files
**Don't edit** `.resx` files from Visual Studio.
It will try to create `.cs` files for you and you will get whole bunch of hard-to-understand errors.
2016-07-20 19:48:58 +02:00
To edit a resource file, use any **plain text editor**.
A resource file is a simple XML file, and it's easy to edit.
2016-07-14 04:49:58 +02:00
## Convert `.txt` resource files into `.resx` files
2016-07-14 04:49:58 +02:00
`dotnet cli` doesn't support embedding old-fashioned `.txt` resource.
2016-08-18 19:11:57 +02:00
You can do a one-time conversion of `.txt` resources into `.resx` files with a helper function:
2016-07-14 04:49:58 +02:00
```
# example, converting all .txt resources under src\Microsoft.WSMan.Management\resources
PS C:\> Convert-TxtResourceToXml -Path src\Microsoft.WSMan.Management\resources
```
`.resx` files would be placed next to `.txt` files.