How to convert a VS 2010 solution back to 2008

后端 未结 8 1445
别那么骄傲
别那么骄傲 2020-12-18 20:43

We started using VS 2010 and were very happy with it, so we converted our project into a 2010 solution (still .net 3.5) and continued our development in 2010. However, we ar

8条回答
  •  伪装坚强ぢ
    2020-12-18 21:33

    Please try the following (find first line and replace to second line to convert 2010 solution to 2008):

    TargetFrameworkMoniker = ".NETFramework,Version=v2.0"
    TargetFramework = "3.5"
    
    # Visual Studio 10
    # Visual Studio 2008
    
    Microsoft Visual Studio Solution File, Format Version 11.00
    Microsoft Visual Studio Solution File, Format Version 10.00
    
    10.0.20506
    9.0.30729
    
    \VisualStudio\v10.0\
    \VisualStudio\v9.0\
    
    
    
    

    This worked on my solutions, you can try to see if it fit to your cases.

提交回复
热议问题