web.config.transform 812 B

12345678910111213141516171819
  1. <configuration>
  2. <dotNetOpenAuth>
  3. <openid>
  4. <relyingParty>
  5. <security requireSsl="false">
  6. <!-- Uncomment the trustedProviders tag if your relying party should only accept positive assertions from a closed set of OpenID Providers. -->
  7. <!--<trustedProviders rejectAssertionsFromUntrustedProviders="true">
  8. <add endpoint="https://www.google.com/accounts/o8/ud" />
  9. </trustedProviders>-->
  10. </security>
  11. <behaviors>
  12. <!-- The following OPTIONAL behavior allows RPs to use SREG only, but be compatible
  13. with OPs that use Attribute Exchange (in various formats). -->
  14. <add type="DotNetOpenAuth.OpenId.RelyingParty.Behaviors.AXFetchAsSregTransform, DotNetOpenAuth.OpenId.RelyingParty" />
  15. </behaviors>
  16. </relyingParty>
  17. </openid>
  18. </dotNetOpenAuth>
  19. </configuration>