Tim
Tim

Reputation: 307

Is It possible to have more than debug and release web.config versions?

I've got dev, alpha, beta and production environments. I store a few appsettings keys in web.config and use transorfmations to replace dev-setting with production-setting on publish. How can I do same things to replace dev-setting with alpha/beta-setting when publish on corresponding server ?

Upvotes: 2

Views: 308

Answers (1)

oldbam
oldbam

Reputation: 2487

Yes, it is. You will need to create new build configuration for each additional transformation you need. See post from Troy Hunt here where he is talking about config transforms among other things

Upvotes: 2

Related Questions