我想创建两个app.config文件,让用户通过命令行参数决定使用哪个文件。如何让我的应用程序在我的代码中使用一个.config或另一个?
我正在使用由配置文件设置的设置文件。有两种可能的配置,如果用户只需输入“> myprogram -live”或“> myprogram -test”并且程序选择要加载的配置文件,就会更容易。谢谢!
答案 0 :(得分:5)
使用不同的名称复制两个exe文件:
myprogram.live.exe
myprogram.live.config
myprogram.test.exe
myprogram.test.config
然后您可以选择启动myprogram.live
或myprogram.test
。