使用不同的 app.config 启动相同的 .exe 文件
有没有办法(也许从命令行)使用不同的应用程序配置启动同一个 exe 文件两次?
Is there a way (maybe from command line) to start the same exe file twice using a different app config?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
从单独的位置启动它,其中 filename.exe.config 不同。
Start it from a separate location, where the filename.exe.config is different.
配置框架允许您从任何文件加载配置,但您必须在应用程序中手动处理该配置。
查看
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您可以将进程加载到单独的应用程序域中。这允许您重定向配置文件。请参阅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.