security - Restrict access to .NET assembly? -
is there way have .net assembly accessible authorized sources?
i mean want have dll contains components, don't want able use these components other dlls exes in solution. want them in separated dlls though.
restriction on namespace might idea if feature exists out there.
is there way?
you can create internal classes. , give specified assemblies access these classes using internalsvisibleto attribute.
the assembly should strong named. can find more information attribute in this article.
Comments
Post a Comment