views:

171

answers:

0

I have a .NET 1.0 program that I've had to use a disassembler on in order to recover the source code.

Once I had the code files using File Disassembler I used VS2008 to upgrade it. I've managed to get the application to the point where it is able to compile...but when I run it I get an error message saying

Fatal error, exiting: Coult not find any resouces appropriate for the specified culture or the neutral culture. Make sure "MyProject.DataPresentationLayer.MainForm.resources" was correctly embedded or linked into assembly "MyProject" at compile time, or that all the satellite assemblies required are loadable and fully signed.

The resource file in question exists as MyProject.DataPresentationLayer.MainForm.resx. Also, the Build Action is set to Embedded Resource as one would expect....

It doesn't have a corresponding .Designer.cs file which might be part of the problem.

How do I get it to recognize my resx files which come from a .NET 1.0 project? Is there some way to upgrade them to be .NET 2.0 compatible with minimal effort?