I have an assembly with functionality that I do not want to show as public, but still available for my other assemblies. This can be done using InternalsVisibleToAttribute, indicating to each assembly that it will make its internal elements visible.
I was wondering if there was a way that I did not need to specify all referenced assemblies, but instead just apply the rule that the assembly must be signed with the same snk in order to make the insides visible.
Does this functionality exist, and if so, can someone point me in the right direction?
source share