Visual Studio 2012 doesn't convert vs2010 solution?

后端 未结 10 770
没有蜡笔的小新
没有蜡笔的小新 2020-12-03 06:44

I opened my vs2010 solution with vs2012 but it didn\'t make any conversion as from 2008 to 2010 was happening. So my solution still remains the same as 10 label on it. when

相关标签:
10条回答
  • 2020-12-03 06:47

    This is slightly different, but along the same lines so in case it helps anyone:

    I was loading a project where it looked like it was loading and then kept showing all projects as unavailable. No errors were on the migration report. I tried reloading the solution and projects many times, using various methods including suggestions here.

    Finally I found a "Resolve Errors" option when right clicking on the solution in the Solution Explorer. VS went through a load process again and it worked; no problems.

    I don't know what it did differently that time, but apparently it made a difference.

    0 讨论(0)
  • 2020-12-03 06:48

    In my case, I had some Visual Source Safe stuff (my project was created with Visual Studio 2003/2005, yes, very old!)

    Once I manually removed the VSS stuff, the conversion succeeded. PS: I know it's about VS2010, but maybe this helps others.

    0 讨论(0)
  • 2020-12-03 06:55

    I managed to 'convert' the solution file to change the line containing '# Visual Studio 2010' to '# Visual Studio 2012' in the .SLN file.

    0 讨论(0)
  • 2020-12-03 06:55

    For C++ projects it makes a difference, as the 2012 compiler (VC11) will only be used on projects that are explicitly 2012, not on 2010 projects opened in VS 2012. Some C++11 improvements are available with the VC11 compiler but not with VC10 (see this SO Answer for a summary), including:

    • Range based for-loops
    • New standard library headers (atomic, mutex, thread,...)
    • Smaller standard library container sizes
    • (And more to follow when the Nov 2012 CTP is delivered to VS 2012)

    In order to convert from VS 2010 project to VS2012 there is no need to manually edit the solution file or 'Save As' over the existing project. Instead:

    If you decline the update when first prompted, you can update the project later by opening the Project menu and choosing Update VC++ projects... [at the top of the menu options]

    From MSDN's "How to: Upgrade Visual C++ Projects to Visual Studio 2012"
    (This page was linked from @Joachim's MSDN link, but I wanted to have the answer here on SO since a number of other answers suggested manual workarounds instead of this VS 2012 feature)

    0 讨论(0)
  • 2020-12-03 06:57

    You can convert a project from VS2010 to VS2012 by doing the following:

    1. Add the 2010 project to your VS2012 solution by right-click on your solution in the Solution Explorer and Select Add --> Existing Project...

    2. The project will appear in the solution and will have (Visual Studio 2010) appended to its name.

    3. Right-click on the added project and select Properties.

    4. In the Configuration Properties --> General pane, change the setting in Platform Toolset field to Visual Studio 2012 (v110)

    5. Repeat for each configuration type, e.g. Release and Debug.

    0 讨论(0)
  • 2020-12-03 07:00

    There are some exceptions, but mostly you'll be able to open the same project and solution files files in both VS2012 and VS2010 SP1.

    VS2012 may convert projects when you first open them, but the changes are (except noted in the document linked) backward compatible with VS2010 (ie using conditionals where needed to only apply to either version when loaded) Most project types will be left entirely untouched though.

    0 讨论(0)
提交回复
热议问题