I have my signed assemblies here, in one of them I have a picture in the resources. The other one is granted to use it as it's own, so my other assembly can reference the picture, and everything works fine.
Only if it wouldn't be for the Form Designer in VS2008. It does not see the Image. ( It might be ok, since it's linked at compile time. One would think!!! )
BUT it does see these pictures if pictures are manually modified from internal
to public
.
The resources class still remains internal. Then it works.
( It because it's the same namespace. )
The resource class is not partial, since partial only works in the same assembly, thus it helps not.
The Problem is: those resources are internal for a reason, I do not want to reuse them from unsigned assemblies, and even more do not want others outside the team do so.
Any suggestions?
Thx in advance