如何使用部分配置文件

发布于 2024-12-04 16:23:46 字数 209 浏览 0 评论 0原文

我参与了一个在不同地点进行开发和测试的项目。 app.config 中有一些条目是不同位置的“本地”条目(因此称为“config”)。因此,每个人都倾向于保留自己的app.config,这总是导致很难引入新的设置。

我正在寻找一种想法,例如部分类,其中大部分 app.config 可以位于一个位置,而一些项目位于另一个位置,但在构建后所有内容都会出现在正确的 exe.config 中。

I am involved in a project where development and testing is going on in different locations. There are a few entries in the app.config that are "local" to the different locations (hence, "config"). Therefore, everyone tends to keep his own app.config, which always makes it difficult for a new setting to be introduced.

I'm looking for an idea, something like partial classes, where the bulk of an app.config can be in one place, and a few items in another, and yet all wind up in the proper exe.config after a build.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜深人未静 2024-12-11 16:23:46

首先,您可以使用 configSource 属性拆分配置文件。例如,在 web.config 中,您可以编写:

    <authentication configSource="ConfigFiles\authentication.config" />

.. 并将身份验证配置放在另一个文件中。这可能对您有用,但有本地变化(例如数据库设置)。

其次,更重要的是,您可能想观看此视频以了解如何部署到不同的环境(使用 web.debug.configweb.release.config

http://www.hanselman.com/blog/WebDeploymentMadeAwesomeIfYoureUsingXCopyYoureDoingItWrong.aspx

First of all you can split up config file using the configSource attribute. For example, in web.config you could write:

    <authentication configSource="ConfigFiles\authentication.config" />

.. and have your authentication config in another file. This may be of use to you, with local variations (eg. DB settings).

Secondly, and more importantly, you probably want to watch this video to learn about deploying to different environments (using web.debug.config and web.release.config)

http://www.hanselman.com/blog/WebDeploymentMadeAwesomeIfYoureUsingXCopyYoureDoingItWrong.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文