例如,Web.config
有可能有Web.Release.config
一些数据库连接在哪里定义,如:
<connectionStrings>
<!-- live db connection -->
</connectionStrings>
并Web.Test.config
与:
<connectionStrings>
<!-- test db connection -->
</connectionStrings>
问题:是否可以app.config
根据构建目标进行类似的构建以使用不同的服务?
背景信息:如果我在 Visual Studion 中使用Add Service Reference...,则使用一些 URL 并生成端点:
<endpoint address />
要切换到其他端点,我必须手动更改 app.config 或生成新的服务参考