mirror of
https://github.com/mm201/pkmn-classic-framework.git
synced 2026-03-21 17:34:29 -05:00
21 lines
690 B
XML
21 lines
690 B
XML
<?xml version="1.0"?>
|
|
|
|
<configuration>
|
|
|
|
<startup>
|
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
|
|
</startup>
|
|
|
|
<runtime>
|
|
<!-- Too bad AppContexts are only supported on .NET 4.6+ and don't seem to override ciphers disabled in the registry anyway. -->
|
|
<AppContextSwitchOverrides value="Switch.System.Net.DontEnableSchUseStrongCrypto=true"/>
|
|
</runtime>
|
|
|
|
<connectionStrings>
|
|
<add name="pkmnFoundationsConnectionString"
|
|
connectionString="Server=localhost;Database=gts;User ID=gts;Password=gts;Pooling=true;charset=utf8;Allow User Variables=True"
|
|
providerName="MySql.Data.MySqlClient" />
|
|
</connectionStrings>
|
|
|
|
</configuration>
|