In an old project, I came across the following build attribute:
[assembly: SecurityPermissionAttribute(SecurityAction.RequestMinimum, Execution = true)]
I understand that this attribute instructs clr not to load this dll if the required permissions are not available. Is it good practice to include such ads in your project by default?
source
share