mirror of
https://github.com/mm201/pkmn-classic-framework.git
synced 2026-03-22 01:44:20 -05:00
50 lines
1.2 KiB
XML
50 lines
1.2 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<!--
|
|
For more information on how to configure your ASP.NET application, please visit
|
|
http://go.microsoft.com/fwlink/?LinkId=169433
|
|
-->
|
|
|
|
<configuration>
|
|
<connectionStrings>
|
|
<add name="pkmnFoundationsConnectionString"
|
|
connectionString="Server=10.211.55.2;Database=gts;User ID=gts;Password=gts;Pooling=true;charset=utf8"
|
|
providerName="MySql.Data.MySqlClient" />
|
|
</connectionStrings>
|
|
|
|
<system.web>
|
|
<compilation debug="true" targetFramework="4.0" />
|
|
<!--
|
|
<authentication mode="Forms">
|
|
<forms loginUrl="~/Account/Login.aspx" timeout="2880" />
|
|
</authentication>
|
|
-->
|
|
|
|
<membership>
|
|
<providers>
|
|
<clear/>
|
|
</providers>
|
|
</membership>
|
|
|
|
<profile>
|
|
<providers>
|
|
<clear/>
|
|
</providers>
|
|
</profile>
|
|
|
|
<roleManager enabled="false">
|
|
<providers>
|
|
<clear/>
|
|
</providers>
|
|
</roleManager>
|
|
|
|
<customErrors mode="Off" />
|
|
|
|
</system.web>
|
|
|
|
<system.webServer>
|
|
<modules runAllManagedModulesForAllRequests="true"/>
|
|
<httpErrors existingResponse="PassThrough"></httpErrors>
|
|
</system.webServer>
|
|
</configuration>
|