A fellow developer created a new application using the standard MVC template which includes a membership provider. However, the application uses our Active Directory to authenticate users. The problem is coming when I try to publish the site to our SQA environment.
The error I'm receiving is at the bottom of this post due to its length.
I have also attempted to comment out the following from within the runtime\assemblyBinding section of the web.config file.
<!--<dependentAssembly>
<assemblyIdentity name="DotNetOpenAuth.Core" publicKeyToken="2780ccd10d57b246" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="DotNetOpenAuth.AspNet" publicKeyToken="2780ccd10d57b246" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0. ...
Go to the complete details ...