39 строки
1.9 KiB
XML
39 строки
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<startup>
|
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.2" />
|
|
</startup>
|
|
<appSettings>
|
|
<add key="MsaHost" value="live.com" />
|
|
<add key="XasuHost" value="https://user.auth.xboxlive.com" />
|
|
<add key="RpsSite" value="user.auth.xboxlive.com" />
|
|
<add key="Scope" value="XboxLive.Signin" />
|
|
<add key="XstsUrl" value="https://xsts.auth.xboxlive.com/xsts/authorize" />
|
|
<add key="ClientId" value="00000000481573FC" />
|
|
<!--Pretending to be TCUI app-->
|
|
<add key="ProfileHost" value="https://profile.xboxlive.com" />
|
|
<add key="AccountsHost" value="https://accounts.xboxlive.com" />
|
|
<add key="ClientSettingsProvider.ServiceUri" value="" />
|
|
</appSettings>
|
|
<system.web>
|
|
<membership defaultProvider="ClientAuthenticationMembershipProvider">
|
|
<providers>
|
|
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" />
|
|
</providers>
|
|
</membership>
|
|
<roleManager defaultProvider="ClientRoleProvider" enabled="true">
|
|
<providers>
|
|
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
|
|
</providers>
|
|
</roleManager>
|
|
</system.web>
|
|
<runtime>
|
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
|
<dependentAssembly>
|
|
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
|
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
|
|
</dependentAssembly>
|
|
</assemblyBinding>
|
|
</runtime>
|
|
</configuration>
|