mirror of
https://github.com/mm201/pkmn-classic-framework.git
synced 2026-04-13 20:35:57 -05:00
58 lines
1.5 KiB
XML
58 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
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=gts;Database=gts;User ID=gts;Password=gts;Pooling=true;charset=utf8;Allow User Variables=True"
|
|
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>
|
|
<httpErrors existingResponse="PassThrough"></httpErrors>
|
|
</system.webServer>
|
|
|
|
<system.data>
|
|
<DbProviderFactories>
|
|
<remove invariant="MySql.Data.MySqlClient" />
|
|
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient"
|
|
description=".Net Framework Data Provider for MySQL"
|
|
type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.9.8.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
|
|
</DbProviderFactories>
|
|
</system.data>
|
|
</configuration>
|