-1

I have:

  • projectA (COM dll)
  • en/projectA.resources.dll
  • projectB (dll) referenced by projectA
  • en/projectB.resources.dll

When i use the projectA GUI is localized, but GUI in the referenced projectB dll is not. why that? What can i do to get projectB used projectB.resources.dll?

Loofer
  • 6,841
  • 9
  • 61
  • 102
Jean-Philippe
  • 397
  • 4
  • 5
  • "Satellite-resources" should be located in subfolders named after their culture (e.g. `\bin\Debug\en-US` and `\bin\Debug\de-DE`). How are you loading resources, exactly? Are you using `.resx` files or separate binary Resource Streams? – Dai Sep 30 '15 at 17:14
  • Im doing the localization by using the .resx for each form. (i.e x.en.resx.). then visual studio create a project.resources.dll – Jean-Philippe Sep 30 '15 at 18:43

1 Answers1

0

Use all the dll in the projectA Build and all the code in the same thread will be localized correctly

Jean-Philippe
  • 397
  • 4
  • 5