Reputation: 1994
We have a ASP.Net solution which has multiple projects and 4 different build configurations (debug, Test, Preprod, prod). There is no build configuration check in the code and hence the only difference between the different configurations is basically the configuration (in web.config).
What would be an ideal Jenkins job setup, so that the job spews different folders for each configuration with same bin and repective configuration.
Upvotes: 4
Views: 936
Reputation: 650
You can use web.config transform for the config transformation for various environments. Then you can try using Jenkins plugin for TFS and perform multi-server deployments easily using TFS CI and CD.
Upvotes: 0
Reputation: 156
We have done exactly same deployment for our asp.net webform solution for different configuration. To acheive that you will need to do follow few steps.
Upvotes: 3