I have an application that contains only signed assemblies - addin for SSMS (SQL Server Management Studio).
This addin loads too slow.
According Why are signed assemblies slow to load? such behavior is because of how security check works and for executable can be fixed by creation of config file with generatePublisherEvidence attribute set to "false".
But i don't have any executables, only set of DLLs.
How can I disable the signature verification for DLLs?
I don't want to modify config for SSMS.