Visual Studio keeps changing project.sln file

前端 未结 3 1976
梦毁少年i
梦毁少年i 2021-02-01 22:00

I work in a team on a Visual C++ project. Following advice we got we\'re tracking the project\'s .sln file with our SCM. It turns out that each time I pull from my partner (yes,

3条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-01 22:30

    I've had the same problem. I finally noticed it came from a vcxproj file which didn't define its GUID. I manually added this GUID in my vcxproj file :

      
        {D3303AD3-B7E5-48F8-919C-18202ABAEF00}
        MyProject
        MyProject
        MFCProj
      
    

提交回复
热议问题