summaryrefslogtreecommitdiffstats
path: root/samples/OAuthAuthorizationServer/Web.config
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-03-24 18:27:53 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2012-03-24 18:27:53 -0700
commit033b32eef902f806ac6a8cc28cceb299dcccf95f (patch)
treeb1faaffce8731f640ca4a3ea687b303273855141 /samples/OAuthAuthorizationServer/Web.config
parentb96059ad3bb7d30284edf9fe7b1a2e7d0dd9ffef (diff)
parente5b8e2e4bd925ef6967c264644e4d67749b5b3de (diff)
downloadDotNetOpenAuth-033b32eef902f806ac6a8cc28cceb299dcccf95f.zip
DotNetOpenAuth-033b32eef902f806ac6a8cc28cceb299dcccf95f.tar.gz
DotNetOpenAuth-033b32eef902f806ac6a8cc28cceb299dcccf95f.tar.bz2
Merge branch 'v4.0'
Conflicts: src/version.txt
Diffstat (limited to 'samples/OAuthAuthorizationServer/Web.config')
-rw-r--r--samples/OAuthAuthorizationServer/Web.config4
1 files changed, 3 insertions, 1 deletions
diff --git a/samples/OAuthAuthorizationServer/Web.config b/samples/OAuthAuthorizationServer/Web.config
index 20b2bbd..7ff2518 100644
--- a/samples/OAuthAuthorizationServer/Web.config
+++ b/samples/OAuthAuthorizationServer/Web.config
@@ -98,10 +98,12 @@
</system.webServer>
<runtime>
+ <!-- When targeting ASP.NET MVC 3, this assemblyBinding makes MVC 1 and 2 references relink
+ to MVC 3 so libraries such as DotNetOpenAuth that compile against MVC 1 will work with it. -->
<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" />
+ <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>