Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
824 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 ...
3
votes
3answers
2k 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, ...
2
votes
1answer
110 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?
2
votes
1answer
355 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
443 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 ...
2
votes
1answer
563 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
0answers
26 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
74 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 ...
1
vote
1answer
412 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 ...
1
vote
1answer
160 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 ...
1
vote
2answers
162 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
4answers
1k 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 ...
0
votes
0answers
167 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 ...
0
votes
1answer
438 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. ...
0
votes
0answers
69 views

How can I use outputFilename.extension with ResGen.exe?

I have resource file (mainFile.resx) - how can I compile it to resource file with ResGen.exe and change this resultant resource file name and location at the same time? It should be achievable ...