LinuxDoku / migratordotnet

Automatically exported from code.google.com/p/migratordotnet
0 stars 0 forks source link

app.config Database Settngs need to be overridable #23

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Database names, usernames and passwords are hardcoded in the 
src/config/app.config. We need 
to figure out a way to allow individual developers to override this.

Possibly look for an app.config.local file and if it's there then use it 
instead of the app.config?

Original issue reported on code.google.com by geoffl...@gmail.com on 7 Jun 2008 at 3:00

GoogleCodeExporter commented 8 years ago

Original comment by geoffl...@gmail.com on 7 Jun 2008 at 3:00

GoogleCodeExporter commented 8 years ago
SVN 78
Allow a developer to override the app.config to be used while running tests so 
they can set their own Connection 
strings.

In your local.properties add something like:
<property name="tests.app.config" value="${dir.config}/local.config"/>

That will be used to specify the app.config to use to run your tests

Original comment by geoffl...@gmail.com on 7 Jun 2008 at 4:43