c# - 如何从 Visual Studio 2012 项目降级到 Visual Studio 2008

标签 c# visual-studio

我正在使用 C# Windows 应用程序。我最近将一个 Visual Studio 2008 项目转换为新的 Visual Studio 2012 项目。现在我必须将这个项目降级到 Visual Studio 2008。有什么办法可以降级这个项目吗?

最佳答案

嗯,2012 与 2010 兼容,我不确定这是否可行,但我在如何从 2010 年回到 2008 年时找到了这个,希望它对你适用于 2012 ( Original Link ):

  1. Make back up of your .sln file

  2. Open your VS 2010 .sln in notepad.

    It should look something like this:

    Microsoft Visual Studio Solution File, Format Version 11.00 
    # Visual Studio 2010  Project("{FAE04EC0-3 ......
    
  3. Change the Version 11.0 to Version 10.0 and the Visual Studio 2010 to 2008

    It should look something like this:

    Microsoft Visual Studio Solution File, Format Version 10.00 
    # Visual Studio 2008  Project("{FAE04EC0-3 .....
    

关于c# - 如何从 Visual Studio 2012 项目降级到 Visual Studio 2008,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13507901/

相关文章:

c# - 我应该在 LINQ 中使用两次 OrderByDescending 吗?

c# - 在 ASP.NET Core Web Api 中正确处理 DbContexts

c# - 将数据从服务器发送到特定客户端

c# - 在 WP7 中使用 JSON 代替 SOAP

visual-studio - 如何让AnkhSVN引用现有项目?

visual-studio - Visual Studio有什么优点?

javascript - 网站有脚本错误,显示为空白

c# - 使用页面方法、Web 服务和自定义 http 处理程序执行 ajax 之间的区别

c++ - DropBox 会干扰 DeleteFile()/rename()

c++ - 获取一个文件名的方法-自定义界面-Microsoft Visual Studio 2010