一、VS新建工程后默认值如下:
- 输出目录:
( S o l u t i o n D i r ) (SolutionDir) (SolutionDir)(Platform)$(Configuration) - 中间目录:
( P l a t f o r m ) (Platform) (Platform)(Configuration)\ - 目标文件名:
$(ProjectName) 即项目名称hps_mfc_sandbox_v140
其中
$(SolutionDir)为解决方案目录(绝对路径)
$(Platform)平台x64
$(Configuration)为配置版本Debug
二、我的VS设置
- 输出目录:
$(SolutionDir)bin$(Platform)$(Configuration)
(路径为:I:\workspace\mfc_sandbox\bin\x64\Debug\) - 中间目录:
$(SolutionDir)bintemp$(Platform)$(ProjectName)$(Configuration)
(路径为:I:\workspace\mfc_sandbox\bintemp\x64\Debug)