I'm getting this error in my Web Application in the SGEN file, after I add a web reference to a third party tool.
Mixed mode assembly is built against version 'v2.0.50727' of the runtime and cannot be loaded in the 4.0 runtime without additional configuration information.
I found this solution but I don't believe that app.config can be added to a Web App. Mixed mode assembly is built against version 'v1.1.4322'
I added this to the web.config but it didn't help.
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0.30319" sku=".NETFramework,Version=v4.0,Profile=Client" />
</startup>
I also added this to the sn.exe.config file, but that didn't help either:
<startup useLegacyV2RuntimeActivationPolicy="true">
Anyone have any ideas?