Update of /cvsroot/pgsqlclient/pgsqlclient/PostgreSql.Data.PGSqlClient.UnitTests
In directory sc8-pr-cvs1:/tmp/cvs-serv17336
Added Files:
PostgreSql.Data.PGSqlClient.UnitTests.dll.config
Log Message:
Add new config file for Unit tests
--- NEW FILE: PostgreSql.Data.PGSqlClient.UnitTests.dll.config ---
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="User" value="postgres" />
<add key="Password" value="" />
<add key="Database" value="test" />
<add key="DataSource" value="localhost" />
<add key="Port" value="5432" />
<add key="Connection lifetime" value="15" />
<add key="Pooling" value="true" />
<add key="Packet Size" value="8192" />
</appSettings>
</configuration>
|