Visual Studio 2010 has a nice database project feature that allows you to deploy a database, as well as configure various environments based on your configuration (create a deployment, etc.).
I would like to integrate this into our automated build environment.
Firstly, after starting the deployment of the script after successful build on my local machine. (That way, I can go straight to running unit tests)
Then, by deploying the script after a successful build on our build server. so that any circuit changes necessary for device testing and integration will be implemented.
How to configure MSBuild or similar to run them in deployment mode.
source
share