45fan.com - 路饭网

搜索: 您的位置主页 > 电脑频道 > 电脑教程 > 阅读资讯:设置VS2010项目属性的默认路径的教程

设置VS2010项目属性的默认路径的教程

2015-11-21 16:18:32 来源:www.45fan.com 【

设置VS2010项目属性的默认路径的教程

 

有两种方法可以设置vs2010的默认包含路径



方法一:

点击“视图->属性管理器”,在打开的属性管理器中选择Microsoft.Cpp.Win32.user打开
设置VS2010项目属性的默认路径的教程

打开后将出现如下图所示:

设置VS2010项目属性的默认路径的教程


这时候就可以设置默认目录了。

方法二:

打开 C:\Users\Administrator\AppData\Local\Microsoft\MSBuild\v4.0目录中的 Microsoft.Cpp.Win32.user.props 文件,里面内容一般如下
 

XML/HTML Code复制内容到剪贴板
  1. <?xmlversion="1.0"encoding="utf-8"?>
  2. <ProjectDefaultTargets="Build"ToolsVersion="4.0"xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <ExecutablePath>$(ExecutablePath)</ExecutablePath>
  5. <IncludePath>$(IncludePath)</IncludePath>
  6. <ReferencePath>$(ReferencePath)</ReferencePath>
  7. <LibraryPath>$(LibraryPath)</LibraryPath>
  8. <SourcePath>$(SourcePath)</SourcePath>
  9. <ExcludePath>$(ExcludePath)</ExcludePath>
  10. </PropertyGroup>
  11. </Project>



分别在<PropertyGroup> 的<IncludePath>增添加包含目录,在<LibraryPath>项中添加库目录,保存重启VS即可。

 

本文地址:http://www.45fan.com/dnjc/28894.html
Tags: 默认 项目 VS2010
编辑:路饭网
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部