How to build the asp.net with sql applications using jbe?
Hi,
I have finally created project area and source control (asp.net mvc project). Now, how to write build engine specific to asp.net?
how can I build sql database?
how can I deploy asp.net application and fire all sql scripts to different servers (Test, UAT and Prod)?
One more out of jazz scope, I have seen in one of the videos of selecting build.bat file as build script. Where can I learn more about it?
One answer
Hi Sam,
This article describes how to use build engine.
I would perform following steps:
1. Create sql file with all the commands required to create your database structure
2. Create cmd or bat file executing the script created in 1 and execute deployment scripts for .net
3. Create command line build definition which executes the file created in 1.
Please let me know if that helps.
This article describes how to use build engine.
I would perform following steps:
1. Create sql file with all the commands required to create your database structure
2. Create cmd or bat file executing the script created in 1 and execute deployment scripts for .net
3. Create command line build definition which executes the file created in 1.
Please let me know if that helps.