The Resource File Generator converts .txt files and .resx (XML-based resource format) files to common language runtime binary .resources files that can be embedded in a runtime binary executable or compiled into satellite assemblies.

learn more… | top users | synonyms

0
votes
0answers
30 views

Add a resource to a generated EXE file

I have an issue with adding a resource file to my generated exe file in runtime. I used Microsoft.CSharp.CSharpCodeProvider and System.CodeDom.Compiler.CompilerParameters to generate an exe file in ...
1
vote
1answer
38 views

How to make Constructor StringResources to public in StronglyTypedClass file generated using resgen.exe with C# and .NET 4.5

I have been generating a StronglyTypedClass file using resgen.exe in my Windows Form application using C# and .NET 4.5 According to syntax I can make the StringResources class as public but the ...
4
votes
2answers
459 views

using .resx && .resource files in custom server control asp

I writing own serverside control and using images that stoores in .resx file.In console application this code works fine: ResXResourceReader rsxr = new ResXResourceReader("Resource1.resx"); ...
0
votes
0answers
53 views

msbuild resource from text

I'm trying to optimize the build of resources from the text file in a multilingual application under VS2008, .Net3.5. Earlier there were files mystrings[.language].resx in the Resources folder. The ...
0
votes
1answer
355 views

How to change the Resgen command line in a VS.NET project?

Having an issue with a ResGen call during a build of a .NET 2.0 project from within Visual Studio .NET 2010, this thread suggests: Add this to your MSBUILD command-line: ...
0
votes
1answer
133 views

VBscript log responses of ResGen.exe

I'm working on a VBScript to generate resource files with ResGen.exe and need to collect the error message of ResGen and write this in a file, have controlled the part of file write (is not present in ...
0
votes
1answer
337 views

Strong Named satellite assemblies using ResGen & AL with multiple resx / resources files

For whatever reason, when compiling multiple .resources files into a single satellite assembly (.dll) the resources will not show. Compiling a single resource will work. Here are the steps I used... ...
3
votes
0answers
614 views

Visual Studio 2010 using wrong framework version of sgen.exe

I have a Visual Studio 2010 project that targets .NET Framework 2.0 and has "Generate serialization assembly" set to "On". When built I noticed the *.XmlSerializers.dll assembly generated targets ...
1
vote
1answer
233 views

MonoTouch build failed due to resgen error

I get the following error when MonoTouch runs resgen on a .resx file in the solution: strings.resx: Error: Native stacktrace: * Assertion at ../../../../mono/metadata/object.c:1778, condition ...
0
votes
1answer
1k views

How to run ResGen with Build Events in VS2010

I need to run ResGen before building a project. In project Properties dialog box, I set up the ResGen, but I go the error Error 524 The command "ResGen /compile tclscript.txt" exited with code ...
2
votes
1answer
299 views

How to compile .txt file to .resx with VS 2010

Can anyone tell me how to compile a .txt file to .resx using VS 2010 post build or pre build events?
1
vote
1answer
2k views

Where do I get resgen.exe to use with NANT?

I am simply trying to run NANT with resgen, but I can't seem to find what I need to download to have it available in 'C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\bin\resgen.exe' on my server. ...
2
votes
1answer
629 views

winforms/c#: Way of copying Default Language resx to a language specific resx file to be able to Generate resource DLL?

Is there a way to copy the default resx file (default language) to an actual satellite assembly but automatically? It appears that default language RESX files are not output as a DLL, only language ...
2
votes
2answers
908 views

How to fix VS2008 and VS2010 dev envts on Win7 x64

Ok, I'm in a world of pain at the moment. We'd been developing with VS2008 (VB.NET, mostly WinForms, also ASP.NET and Windows services) on Win7 x64, with specific requirements (that we can't get rid ...
6
votes
1answer
2k views

Programmatically generate Designer.cs for resx file (ResXResourceWriter/ResXResourceReader)

I'm creating/updating resx files in TFS using ResXResourceWriter/ResXResourceReader which doesnt generate the .Designer.cs file. I saw that Resgen creates the .Designer.cs. How can i call that ...
1
vote
1answer
798 views

.NET: Resgen Tutorial

First off I have RFM and RFM and I have tried to follow a few sites but I cannot grasp the concept of the Resource Manager. Can someone please explain to me how to generate a resource manager similar ...
4
votes
3answers
5k views

error RG0000: Could not load file or assembly 'xxx' or one of its dependencies. Access is denied

This is for a windows forms project under VS2010. Here is the message I get from MSBuild: error RG0000: Could not load file or assembly '3rdPartyAssemblyUsedByProject, Version=1.1.263.0, ...
1
vote
1answer
229 views

.NET Resgen.exe file comment?

Anyone know if there is a way to add comments to a file passed to resgen.exe? Example: ApplicationName=Hello World ApplicationVersion=1.0 ApplicationMaker=Hello World Maker ;CommentHere ValueYes=Yes ...
2
votes
1answer
781 views

Problem compiling resource file to library

I have a web application built in asp.net, which uses resource files to support multiple languages. The problem I have is that I can only add a new language file in Visual Studio, and I have to ...
1
vote
2answers
240 views

Redistribute resgen

Anyone know whether you can redistribute resgen.exe as part of your application? There doesn't seem to be any documentation on this on MSDN.
1
vote
3answers
2k views

Combine LocBaml and Resources in single satellite assembly

Its my understanding that the recommended approach to localization in WPF is to use the LocBaml tool to extract the localizable items into e.g. a csv file, translate the items into the desired ...