diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2011-08-09 08:30:10 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2011-08-09 08:30:10 -0700 |
commit | 890bf0c250bdcb57c48e8121f8308e8bdd045cb6 (patch) | |
tree | 781f092c8c8bd186629705a5ea5f1e035cab998f /nuget/content | |
parent | ef6957d6bf7698252895214eac7cb01d91775d6c (diff) | |
download | DotNetOpenAuth-890bf0c250bdcb57c48e8121f8308e8bdd045cb6.zip DotNetOpenAuth-890bf0c250bdcb57c48e8121f8308e8bdd045cb6.tar.gz DotNetOpenAuth-890bf0c250bdcb57c48e8121f8308e8bdd045cb6.tar.bz2 |
Fixed the webResourceUrlProvider configuration element.
Diffstat (limited to 'nuget/content')
-rw-r--r-- | nuget/content/web.config.transform | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/nuget/content/web.config.transform b/nuget/content/web.config.transform index 1958981..8dcadcd 100644 --- a/nuget/content/web.config.transform +++ b/nuget/content/web.config.transform @@ -1,7 +1,12 @@ <configuration> <configSections> <section name="uri" type="System.Configuration.UriSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> - <section name="dotNetOpenAuth" type="DotNetOpenAuth.Configuration.DotNetOpenAuthSection" requirePermission="false" allowLocation="true"/> + <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> </configSections> <uri> |