Copy satellite assemblies to Windows CE emulator

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi,

i have two Projects A, B. Both have satellite assemblies (for
internationalization). B depend on A. After compilation, the satellite
assemblies from B (B\bin\Debug\en) are in A\bin\Debug\en. But if i run
the debuger, the satellite assemblies from B was not copy to emulator.

thanks,

John
 
I suggest you do not have satellite assemblies for the dll. Instead
distribute the resx file(s) of the dll with it; users of the dll can merge
the dll's resx into their exe project. Expose a public static property from
the dll for the ResourceManager to be externally set (so the exe and dll can
use the same object for loading strings etc).

Cheers
Daniel
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top