本文介绍了$(SolutionDir)$(ConfigurationName)解析为????的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的C ++项目中,属性,配置属性,常规,输出目录默认为$(SolutionDir)$(ConfigurationName)。我怎么知道这些决心是什么?我应该能够打开Visual Studio命令提示符并输入:

echo $(SolutionDir)$(ConfigurationName)

但是不回显值,只有文字。

我在Visual Studio 2005中工作...

In my C++ project, Properties, Configuration Properties, General, Output Directory defaults to $(SolutionDir)$(ConfigurationName). How can I tell what these resolve to? I should be able to open the Visual Studio command prompt and type:

echo $(SolutionDir)$(ConfigurationName)

but that does not echo the value, only the literal.

I'm working in Visual Studio 2005...

推荐答案


这是您正在使用的解决方案目录的路径。

This is the Path of your working Solution Directory.


这是您在编译时设置  的选项。项目,例如Debug或Release。

This is the option of setting  when you compile  project,for example Debug or Release.


这篇关于$(SolutionDir)$(ConfigurationName)解析为????的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 18:15