diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-12-23 07:36:30 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-12-23 07:36:30 -0800 |
commit | deeca6c5466d22875bf29cfe7c61973cb12f0ddc (patch) | |
tree | 93266f22b14041d6c554f878d19da85e1a578bb3 /nuget/content | |
parent | c327a9f50924bbc9d88bb6127a9316950345b338 (diff) | |
download | DotNetOpenAuth-deeca6c5466d22875bf29cfe7c61973cb12f0ddc.zip DotNetOpenAuth-deeca6c5466d22875bf29cfe7c61973cb12f0ddc.tar.gz DotNetOpenAuth-deeca6c5466d22875bf29cfe7c61973cb12f0ddc.tar.bz2 |
NuGet packages now built nightly. Woot!
Diffstat (limited to 'nuget/content')
-rw-r--r-- | nuget/content/web.config.transform | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/nuget/content/web.config.transform b/nuget/content/web.config.transform new file mode 100644 index 0000000..54fc9e7 --- /dev/null +++ b/nuget/content/web.config.transform @@ -0,0 +1,49 @@ +<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"/> + </configSections> + + <uri> + <!-- The uri section is necessary to turn on .NET 3.5 support for IDN (international domain names), + which is necessary for OpenID urls with unicode characters in the domain/host name. + It is also required to put the Uri class into RFC 3986 escaping mode, which OpenID and OAuth require. --> + <idn enabled="All"/> + <iriParsing enabled="true"/> + </uri> + + <system.net> + <defaultProxy enabled="true" /> + <settings> + <!-- This setting causes .NET to check certificate revocation lists (CRL) + before trusting HTTPS certificates. But this setting tends to not + be allowed in shared hosting environments. --> + <!--<servicePointManager checkCertificateRevocationList="true"/>--> + </settings> + </system.net> + + <dotNetOpenAuth> + <!-- This is an optional configuration section where aspects of dotnetopenauth can be customized. --> + <!-- For a complete set of configuration options see http://www.dotnetopenauth.net/developers/code-snippets/configuration-options/ --> + <openid> + <relyingParty> + <security requireSsl="false" /> + <behaviors> + <!-- The following OPTIONAL behavior allows RPs to use SREG only, but be compatible + with OPs that use Attribute Exchange (in various formats). --> + <add type="DotNetOpenAuth.OpenId.Behaviors.AXFetchAsSregTransform, DotNetOpenAuth" /> + </behaviors> + </relyingParty> + </openid> + <messaging> + <untrustedWebRequest> + <whitelistHosts> + <!-- Uncomment to enable communication with localhost (should generally not activate in production!) --> + <!--<add name="localhost" />--> + </whitelistHosts> + </untrustedWebRequest> + </messaging> + <!-- Allow DotNetOpenAuth to publish usage statistics to library authors to improve the library. --> + <reporting enabled="true" /> + </dotNetOpenAuth> +</configuration>
\ No newline at end of file |