使用不同的 app.config 启动相同的 .exe 文件

发布于 2024-12-06 20:14:38 字数 46 浏览 3 评论 0原文

有没有办法(也许从命令行)使用不同的应用程序配置启动同一个 exe 文件两次?

Is there a way (maybe from command line) to start the same exe file twice using a different app config?

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

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

发布评论

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

评论(4

雨落□心尘 2024-12-13 20:14:38
var configMap = new ExeConfigurationFileMap();
configMap.ExeConfigFilename = @"myconfigpath";
var config = ConfigurationManager.OpenMappedExeConfiguration(configMap, ConfigurationUserLevel.None);
var configMap = new ExeConfigurationFileMap();
configMap.ExeConfigFilename = @"myconfigpath";
var config = ConfigurationManager.OpenMappedExeConfiguration(configMap, ConfigurationUserLevel.None);
好久不见√ 2024-12-13 20:14:38

从单独的位置启动它,其中 filename.exe.config 不同。

Start it from a separate location, where the filename.exe.config is different.

伏妖词 2024-12-13 20:14:38

配置框架允许您从任何文件加载配置,但您必须在应用程序中手动处理该配置。

查看 ConfigurationManager

THe configuration framework let you load the config from any file but you will have to handle that manually from within your application.

Look at ConfigurationManager class

待天淡蓝洁白时 2024-12-13 20:14:38

您可以将进程加载到单独的应用程序域中。这允许您重定向配置文件。请参阅http://www.codeproject.com/KB/IP/HostingMultipleServices.aspx 有关使用 Windows 服务执行此操作的示例。对于任何类型的应用程序来说都是类似的。

You can load your process into a separate app domain. This allows you to redirect the configuration file. See http://www.codeproject.com/KB/IP/HostingMultipleServices.aspx for an example of doing this with a Windows service. It'll be similar for any kind of application.

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