2

例如,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 或生成新的服务参考

4

1 回答 1

4

是的,Visual Studio 有一个名为SlowCheetah的插件,它可以为文件添加配置转换功能app.config,就像它在web.config. 它非常有用 - 我不明白为什么它没有作为默认功能包含在 Visual Studio 中。

于 2013-11-13T07:32:39.963 回答