且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

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

更新时间:2023-02-16 15:12:33

好了2012与2010兼容,我不知道这会工作,但我发现这个如何去回程从2010到2008年,希望它为你的作品与2012(原文链接):


  

      
  1. 请备份您的.sln文件的


  2.   
  3. 打开VS 2010的.sln在记事本中。


      
      

    它应该是这个样子:

     微软的Visual Studio解决方案文件格式版本11.00
    #Visual Studio 2010的项目({FAE04EC0-3 ......


  4.   
  5. 更​​改版本11.0至10.0版本和Visual Studio 2010至2008年


      
      

    它应该是这个样子:

     微软的Visual Studio解决方案文件格式版本10.00
    #Visual Studio 2008的项目({FAE04EC0-3 .....


  6.   

块引用>

I am working with C# Windows application . I've recently converted a Visual Studio 2008 project to the new Visual Studio 2012 project . Now I have to downgrade this project to Visual Studio 2008 . Is there any way to downgrade this project?

Well 2012 is compatible with 2010, i am not sure this would work but i found this on how to go back from 2010 to 2008, hope it works for you with 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 .....