Tagged Questions
The strongnameidentitypermis tag has no wiki summary.
5
votes
3answers
402 views
How can I prevent unauthorized code from accessing my assembly in .NET 2.0?
In .NET 1.x, you could use the StrongNameIdentityPermissionAttribute on your assembly to ensure that only code signed by you could access your assembly. According to the MSDN documentation,
In ...
1
vote
3answers
273 views
Restricting using strong named dlls functionality
I'm trying to think of a way that prevent others using your published dlls, for example let's say you create a cool light weight winui photo processing tool that's separated into several assemblies. ...