6

We are using a .NET component that uses satellite assemblies for localization. However, if we want to create our own translations, we would have to send our translations or pay for the source code in order to get the Key File for signing.

Is it possible to load a .resources file in our main application, so that the localized strings are used by the component?

Thanks a lot!

Simon
  • 301
  • 1
  • 4
  • 15
  • I didn't find a way to localize a strong-named assembly without its key, see http://stackoverflow.com/questions/2537958/override-a-resource-from-standard-assembly-in-asp-net – wRAR Jul 13 '11 at 17:30

1 Answers1

2

Why not to resign all assemblies?

adontz
  • 1,428
  • 16
  • 36
  • This is probably the best solution for development. If you only want to use the components on one machine, you can also delay sign the satellite assemblies and turn off the validation for the components you want to localize. Thanks! – Simon Jul 18 '11 at 07:16