移动OBJ文件夹中的Visual Studio 2012 [英] Move obj folder in Visual Studio 2012

查看:214
本文介绍了移动OBJ文件夹中的Visual Studio 2012的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

由于路径过长(超过260个字符),我需要在其他地方创造的obj文件夹。

because the path becomes too long (more than 260 chars), I need to create obj folder elsewhere.

我怎么能告诉VS2012创建的这些文件夹中指定路径?

How can I tell VS2012 to create these folder in a specified path?

谢谢!

推荐答案

您需要编辑项目文件(XML)来指定< BaseIntermediateOutputPath> 。此值默认为 obj\

You'll need to edit the project file (XML) to specify the <BaseIntermediateOutputPath>. This value defaults to obj\.

<PropertyGroup>
  <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  ...
  <BaseIntermediateOutputPath>some\path\</BaseIntermediateOutputPath>
</PropertyGroup>

这篇关于移动OBJ文件夹中的Visual Studio 2012的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆