version control - Visual Studio keeps changing project.sln file -
i work in team on visual c++ project. following advice got we're tracking project's .sln file our scm. turns out each time pull partner (yes, use git) , open solution in vs, .sln file updated. part being updated long id appears several times (in case ending 7c44) in following segment:
{828cb89e-f092-3b7a-2f8c-62e146587c44}.debug|win32.activecfg = debug|win32 {828cb89e-f092-3b7a-2f8c-62e146587c44}.debug|win32.build.0 = debug|win32 {828cb89e-f092-3b7a-2f8c-62e146587c44}.debugstaticcrt|win32.activecfg = debugstaticcrt|win32 {828cb89e-f092-3b7a-2f8c-62e146587c44}.debugstaticcrt|win32.build.0 = debugstaticcrt|win32 {828cb89e-f092-3b7a-2f8c-62e146587c44}.release|win32.activecfg = release|win32 {828cb89e-f092-3b7a-2f8c-62e146587c44}.release|win32.build.0 = release|win32 {828cb89e-f092-3b7a-2f8c-62e146587c44}.releasestaticcrt|win32.activecfg = releasestaticcrt|win32 {828cb89e-f092-3b7a-2f8c-62e146587c44}.releasestaticcrt|win32.build.0 = releasestaticcrt|win32 {828cb89e-f092-3b7a-2f8c-62e146587c44}.template|win32.activecfg = template|win32 {828cb89e-f092-3b7a-2f8c-62e146587c44}.template|win32.build.0 = template|win32
what number mean? how can make stop changing between us?
that guid visual studio uses refer individual projects. find same guid @ top of .sln file, projects defined/imported.
visual studio reads guid corresponding .csproj/.vbproj file. there should find projectguid property near top corresponding guid. if , partner have different guid defined there, .sln update.
Comments
Post a Comment