pkmn-classic-framework/GlobalTerminalService/app.config
Megan Edwards b7728ab95c Changed default connection string
...to something plausible
2023-07-08 14:45:32 -04:00

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>