如何在 Visual Studio 2005 下打开 Visual Studio 2008 的项目 (应急使用)

首先找到 csproj 或 vbproj 项目文件

用记事本打开

把 MSBuildToolsPath 替换为 MSBuildBinPath,只有一处,在末尾,也可以直接手工把 Tools 改为 Bin,然后直接打开项目文件,不要打开解决方案文件。

 

代码
   
     
<!-- 适用于 Visual Studio 2008 及后续版本 -->
<!-- (C# 项目) -->
< Import Project ="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- (VB 项目) -->
< Import Project ="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />




<!-- 适用于 Visual Studio 2005 及后续版本 -->
<!-- (C# 项目) -->
< Import Project ="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- (VB 项目) -->
< Import Project ="$(MSBuildBinPath)\Microsoft.VisualBasic.targets" />
 



<!-- 以上仅对以 *.cs 或 *.vb 文件为主的项目试验通过,未对包含 *.aspx、*.xaml 等项目试验 -->

 

你可能感兴趣的:(2008)