VS2010 and VS2008 project compatibility

前端 未结 8 1999
一个人的身影
一个人的身影 2020-12-08 15:22

Does anyone know if VS2010 will use the same project & solution file format as 2008, or will the 2008 project files need to be upgraded to 2010 format before they\'ll op

8条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-08 16:20

    to convert visual studio 2010 solution file (.sln) to visual studio 2008 solution file (.sln) simply follow these steps:

    1. in .sln file replace "Format Version 11.00" to "Format Version 10.00"
    2. in .sln file replace "# Visual Studio 2010" to "# Visual Studio 2008"
    3. in .csproj replace "ToolsVersion=''4.0''" to "ToolsVersion=''3.5''"
    4. in .csproj replace "v10.0" to "v9.0"

提交回复
热议问题