Is there a way I can expose My.Resources in an assembly such that I can use strongly typed resources in a project that references that assembly?
In the assembly I can access the resource file "RunTimeStrings" like so:
My.Resources.RunTimeStrings.PowerOn
to return the "Power is On" string in the appropriate culture, but I want to be able to access this from an external application.
I tried just exposing the Resource file as a shared readonly property:
Return My.Resources.RunTimeStrings
but this gives the error Error 53 'RunTimeStrings' is a type and cannot be used as an expression