diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2011-10-09 21:00:46 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2011-10-09 21:00:46 -0700 |
commit | 4d641542663e6a18f7bc9dfae2a6ee922ddf45a2 (patch) | |
tree | 9d09ab747e74afc24d4fb94ac9ee311499bc6ffe /samples/OAuthClient | |
parent | 39bc8273944a4bea62b14bf000b58a3456386644 (diff) | |
download | DotNetOpenAuth-4d641542663e6a18f7bc9dfae2a6ee922ddf45a2.zip DotNetOpenAuth-4d641542663e6a18f7bc9dfae2a6ee922ddf45a2.tar.gz DotNetOpenAuth-4d641542663e6a18f7bc9dfae2a6ee922ddf45a2.tar.bz2 |
Fixed .config files to refer to the DNOA config types explicitly. This fixed the OpenIdOfflineProvider WPF sample.
Diffstat (limited to 'samples/OAuthClient')
-rw-r--r-- | samples/OAuthClient/Web.config | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/samples/OAuthClient/Web.config b/samples/OAuthClient/Web.config index 7c01c6f..8cd62d2 100644 --- a/samples/OAuthClient/Web.config +++ b/samples/OAuthClient/Web.config @@ -3,11 +3,11 @@ <configSections> <section name="uri" type="System.Configuration.UriSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/> <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler" requirePermission="false" /> - <sectionGroup name="dotNetOpenAuth" type="DotNetOpenAuth.Configuration.DotNetOpenAuthSection"> - <section name="openid" type="DotNetOpenAuth.Configuration.OpenIdElement" requirePermission="false" allowLocation="true" /> - <section name="oauth" type="DotNetOpenAuth.Configuration.OAuthElement" requirePermission="false" allowLocation="true" /> - <section name="messaging" type="DotNetOpenAuth.Configuration.MessagingElement" requirePermission="false" allowLocation="true" /> - <section name="reporting" type="DotNetOpenAuth.Configuration.ReportingElement" requirePermission="false" allowLocation="true" /> + <sectionGroup name="dotNetOpenAuth" type="DotNetOpenAuth.Configuration.DotNetOpenAuthSection, DotNetOpenAuth.Messaging"> + <section name="openid" type="DotNetOpenAuth.Configuration.OpenIdElement, DotNetOpenAuth.OpenId" requirePermission="false" allowLocation="true" /> + <section name="oauth" type="DotNetOpenAuth.Configuration.OAuthElement, DotNetOpenAuth.OAuth" requirePermission="false" allowLocation="true" /> + <section name="messaging" type="DotNetOpenAuth.Configuration.MessagingElement, DotNetOpenAuth.Messaging" requirePermission="false" allowLocation="true" /> + <section name="reporting" type="DotNetOpenAuth.Configuration.ReportingElement, DotNetOpenAuth.Messaging" requirePermission="false" allowLocation="true" /> </sectionGroup> <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> |