failed to embed resource

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

H

I have two resource files: strings.resx and strings.fr.res
Both files have the build action property set to Embedded Resource

When I build my project, the dll is placed under the bin/debug directory, but I also get a subdirectory under the bin/debug directory called 'fr' and a file in that directory called 'strings.resources.dll

Why is it putting the resources under the 'fr' directory when I explicitly stated that I wanted embedded resources

Thank
Graha
 
Ha Graham,

This is by design. There is no error, your resources were embedded.

These are called satellite assemblies.

Greetings
Martin
Graham said:
Hi

I have two resource files: strings.resx and strings.fr.resx
Both files have the build action property set to Embedded Resource.

When I build my project, the dll is placed under the bin/debug directory,
but I also get a subdirectory under the bin/debug directory called 'fr' and
a file in that directory called 'strings.resources.dll'
Why is it putting the resources under the 'fr' directory when I explicitly
stated that I wanted embedded resources?
 
Back
Top