Howto: Using DotNetOpenAuth v3.4.x with ASP.NET MVC2

Posted by David Christiansen on Geeks with Blogs See other posts from Geeks with Blogs or by David Christiansen
Published on Fri, 16 Apr 2010 21:28:54 GMT Indexed on 2010/04/16 22:33 UTC
Read the original article Hit count: 352

Filed under:

When targeting ASP.NET MVC 2, this assemblyBinding makes MVC 1 references relink to MVC 2 so libraries such as DotNetOpenAuth that compile against MVC 1 will work with it.

<runtime>

<legacyHMACWarning enabled="0" />

<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">

<dependentAssembly>

<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />

<bindingRedirect oldVersion="1.0.0.0" newVersion="2.0.0.0" />

</dependentAssembly>

</assemblyBinding>

</runtime>

© Geeks with Blogs or respective owner