In debugging the LinkedInToolkit, I downloaded the DotNetOpenAuth source from git. Now that I've added the reference I'm getting the following error when compiling the prebuilt websites the come from LinkedInToolkit
Could not load file or assembly DotNetOpenAuth version 3.4.7.11039. Strong name signature could not be modified....
Considering that the DotNetOpenAuth DLL is delay signed, how to I make my website compile and run?
I've searched web.config and references for any mention of a strongly named DLL. Where else would the strong name check be done?
You should also search in the references of your project references and so on until you find a DLL which depends on a signed version of the
DotNetOpenAuth
assembly. Note that this assembly could be dynamically loaded and might not even appear in the list of referenced assemblies. You could also disable strong name checking temporary but make sure you realize the possible consequences of this.