summaryrefslogtreecommitdiffstats
path: root/samples/OpenIdRelyingPartyWebForms
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-01-19 20:14:58 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2010-01-19 20:14:58 -0800
commit7b741da22d416744bf8f6f75c7a55552d1c1feca (patch)
tree9bfb0f39a88bb9ea844784b3281d8f542dae5045 /samples/OpenIdRelyingPartyWebForms
parentcdb850c6cf90381e6db75365272b7d65ef5fe359 (diff)
downloadDotNetOpenAuth-7b741da22d416744bf8f6f75c7a55552d1c1feca.zip
DotNetOpenAuth-7b741da22d416744bf8f6f75c7a55552d1c1feca.tar.gz
DotNetOpenAuth-7b741da22d416744bf8f6f75c7a55552d1c1feca.tar.bz2
Workaround Code Contracts assembly showing up in web app's Bin folder and causing type resolution ambiguities.
Diffstat (limited to 'samples/OpenIdRelyingPartyWebForms')
-rw-r--r--samples/OpenIdRelyingPartyWebForms/Web.config6
1 files changed, 5 insertions, 1 deletions
diff --git a/samples/OpenIdRelyingPartyWebForms/Web.config b/samples/OpenIdRelyingPartyWebForms/Web.config
index b0aa965..5d3a33b 100644
--- a/samples/OpenIdRelyingPartyWebForms/Web.config
+++ b/samples/OpenIdRelyingPartyWebForms/Web.config
@@ -61,7 +61,11 @@
<system.web>
<!--<sessionState cookieless="true" />-->
- <compilation debug="true"/>
+ <compilation debug="true">
+ <assemblies>
+ <remove assembly="DotNetOpenAuth.Contracts"/>
+ </assemblies>
+ </compilation>
<customErrors mode="RemoteOnly"/>
<authentication mode="Forms">
<forms name="OpenIdRelyingPartySession"/> <!-- named cookie prevents conflicts with other samples -->