rss
twitter
  •  

Discover the difference between .sln & .suo files in visual studio solution

| Posted in Microsoft Visual Studio |

0

the .sln file stores metadata about the solution

  • related projects to the solution
  • items available at solution level and not to particular element
  • solution build configuration

the .suo file stores metadata used to customize the IDE

Note that: the .sln file can be shared between developers on development team, but the .suo file is user specific file and can’t be shared between developers

Post a comment