C# app.config 在多个项目之间共享

发布于 2024-12-14 18:09:39 字数 391 浏览 0 评论 0原文

我正在开发一个包含多个项目的解决方案。

我遵循此处描述的方法(建议使用通用解决方案项目的第一个响应): single app.config multi-project c#

结果是,对于每个项目,app.config 文件都会被复制并重命名,如 XXX.exe.config。

然而,理想的输出是每个项目的配置文件名保持相同(例如App.config)。因为我想在部署时将所有可执行文件和 DLL 放在同一个文件夹中(某些可执行文件引用同一个 DLL,因此将它们全部放在一起是有意义的)。

任何建议表示赞赏。

I am working on a solution that has multiple projects.

I follow the method described here (the first response that suggest using a common solution item): single app.config multi-project c#

The result is that for each project, the app.config file is copied and renamed like XXX.exe.config.

However, the desirable output is that the config file name remain the same (e.g. App.config) for each project. Because I wanted to put all the executable and the DLLs in the same folder when it's deployed (some executable reference to the same DLL so it make sense to put them all together).

Any suggestion is appreciated.

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

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

发布评论

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

评论(2

最美不过初阳 2024-12-21 18:09:47

我建议您考虑使用 TT 模板。那么简单的解决方案是拥有一个包含通用 ttinclude 文件的 App.tt 文件。这将根据您可能想要在 app.config 中设置的其他设置生成具有相同(或不同)内容的 App.config 文件。

例如,我们有一个如下所示的 App.Config:

<# EnvironmentName = "local"; #>
<#@ include file="App.Template.ttinclude" #>

App.Template.ttinclude 包含我们想要输出的所有内容(以及一些根据环境值更改的设置,因为我们支持 8 个安装环境。

每个 App.Template.ttinclude 开始变得复杂。

实际上包含另一个主配置文件,其中包含我们的常用设置,但是当我们在主配置文件中的 switch 语句中包含特定于环境的配置时(为了解决 TT 文件处理中的错误),情况 一个应用程序特定的 DLL 配置,它只包含我们的其他配置之一:

例如 MyApp.Exe.config 包含:

<#@ include file="App.tt" #>

I suggest you look at using TT templating. Then the simple solution is to have an App.tt file that includes a common ttinclude file. This will generate an App.config file with the same (or different) content based on other settings you may want to set in the app.config.

For example we have an App.Config that looks like this:

<# EnvironmentName = "local"; #>
<#@ include file="App.Template.ttinclude" #>

The App.Template.ttinclude contains everything we want to output (along with some settings that change based on the Environment value as we support 8 installation enviromments.

Each App.Template.ttinclude actually includes another master config file that contains our common settings, but that starts to get complicated as we include environment-specific configs within the master config file, in a switch statement (to get around a bug in TT file processing).

Where we have an app specific DLL config, it simply includes one of our others:

e.g. MyApp.Exe.config contains:

<#@ include file="App.tt" #>
夜雨飘雪 2024-12-21 18:09:45

您可以手动加载配置文件。请参阅此处的讨论:使用 ConfigurationManager 从任意位置加载配置

You can load a configuration file manually. See the discussion here: Using ConfigurationManager to load config from an arbitrary location

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