.NET Tools - Resgen
From SwinBrain
Resgen is the "Microsoft .NET Resource Generator". This is used to convert between different resource file formats. Typically you will use XML resource files with a ".resx" extension. To compile these into your .NET assemblies you will need to convert them into ".resources" files. This is the purpose of the Resgen tool. The general syntax for calling this tool is:
Resgen [input file] [output file]
Examples
This example illustrates the conversion of a .resx file into a .resources file.
Resgen MyResources.resx MyResources.resources
Further Information
- Read about the C# Compiler
- Read about scripting your compiler calls using Makefiles
- Resgen for .NET version 2.0
- Resgen for .NET version 1.1