VS corrupted .sln file?

前端 未结 4 1443
醉酒成梦
醉酒成梦 2021-01-12 18:41

When I try to open my .sln file, Visual Studio quits on me. I can open it by opening up TFS, getting a specific version, choosing the latest version, forcing an overrwrite,

相关标签:
4条回答
  • 2021-01-12 19:04

    Difficult to tell. A sln file is quite simple structured, if you open it with a text editor, check is everything looks all right to you.

    Seems to me that the sln file could be in a conflicted state.

    0 讨论(0)
  • 2021-01-12 19:16

    I would think this is more likely to be the .suo (which is a hidden file). These are know to corrupt (and this has been true since at least VC++ V6). Deleting it will clear all sorts of odd/erroneous behaviour in VS.

    (The .suo holds local settings: which files are open and layout, breakpoints, bookmarks, ... only: nothing that really matters to the solution or projects.)

    For Visual Studio 2015 and 2017: rather than being in the same location as the solution (.sln) file, it is now held in a, hidden, folder called .vs in the folder containing the solution file.

    0 讨论(0)
  • 2021-01-12 19:26

    Get copies of both versions of the file and use your favorite dif tool to see what's changed. sln files are xml (i.e. human readable), so it isn't too hard to figure out what happened.

    0 讨论(0)
  • 2021-01-12 19:28

    Have you tried creating a new sln and importing all the projs? if it doesn't solve the corruption, it may point to a project with a problem.

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