亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

VS2010 項(xiàng)目屬性的默認(rèn)包含路徑的兩種設(shè)置方法(圖文)

  發(fā)布時(shí)間:2015-10-29 14:07:46   作者:佚名   我要評(píng)論
這篇文章主要介紹了VS2010 項(xiàng)目屬性的默認(rèn)包含路徑的兩種設(shè)置方法(圖文),需要的朋友可以參考下

有兩種方法可以設(shè)置vs2010的默認(rèn)包含路徑



方法一:

點(diǎn)擊“視圖->屬性管理器”,在打開(kāi)的屬性管理器中選擇Microsoft.Cpp.Win32.user打開(kāi)


打開(kāi)后將出現(xiàn)如下圖所示:




這時(shí)候就可以設(shè)置默認(rèn)目錄了。

方法二:

打開(kāi) C:\Users\Administrator\AppData\Local\Microsoft\MSBuild\v4.0目錄中的 Microsoft.Cpp.Win32.user.props 文件,里面內(nèi)容一般如下

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <?xml version="1.0" encoding="utf-8"?>     
  2. <Project DefaultTargets="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>項(xiàng)中添加庫(kù)目錄,保存重啟VS即可。

相關(guān)文章

最新評(píng)論