How to create two different executables from one Visual Studio project

后端 未结 2 1201
南方客
南方客 2021-02-05 17:26

I have a main executable that runs based on settings saved in a configuration file. I want to be able to change the settings in the config file through a different executable.

2条回答
  •  花落未央
    2021-02-05 17:45

    The idea of a configuration file is that you don't need to build multiple executable files. ;-)

    You could use the Configuration Manager, to create a new Solution configuration and change the output directory for that configuration.

提交回复
热议问题