diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-31 20:12:44 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-31 20:12:44 -0800 |
commit | 70446775807fde815cc1885f6f0fa75a79b861ac (patch) | |
tree | 3f598c274d4e4e3942dd3ea5c12b4d55c3e6c774 | |
parent | 1b7a82f0bc74373cae8ab66b1cc12195c5553a18 (diff) | |
download | DotNetOpenAuth-70446775807fde815cc1885f6f0fa75a79b861ac.zip DotNetOpenAuth-70446775807fde815cc1885f6f0fa75a79b861ac.tar.gz DotNetOpenAuth-70446775807fde815cc1885f6f0fa75a79b861ac.tar.bz2 |
Fixed buggy app.config file.
-rw-r--r-- | samples/OAuthConsumerWpf/App.config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/OAuthConsumerWpf/App.config b/samples/OAuthConsumerWpf/App.config index f142405..d4d434a 100644 --- a/samples/OAuthConsumerWpf/App.config +++ b/samples/OAuthConsumerWpf/App.config @@ -3,7 +3,7 @@ <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" /> - <section name="dotNetOpenAuth" type="DotNetOpenAuth.Configuration.DotNetOpenAuthSection" requirePermission="false" allowLocation="true"/> + <section name="dotNetOpenAuth" type="DotNetOpenAuth.Configuration.DotNetOpenAuthSection, DotNetOpenAuth" requirePermission="false" allowLocation="true"/> </configSections> <!-- The uri section is necessary to turn on .NET 3.5 support for IDN (international domain names), |