Change destination build directory in Visual Studi

2019-08-02 02:39发布

I'm new to Visual Studio. I have imported a Visual Studio project made of several sub-projects. I can build all of them, but I don't know where the IDE put the executables files once built.

How can I get/set the destination directory of a project from Visual Studio?

I'm using Visual C++ 2010 Express.

1条回答
smile是对你的礼貌
2楼-- · 2019-08-02 03:26

The default output directory is :

$(SolutionDir)$(Configuration)\

So by default, output binaries will be created in:

Path\To\Your\Solution\[Configuration]\.

Configuration can be something like "Debug" or "Release".

Depending on your project settings, these directories can vary. You can see/change those settings in :

Menu Project -> Properties -> Configuration Properties -> General -> Output Directory

查看更多
登录 后发表回答