I should add the file.sweat to my source control?

Visual Studio has a file with the extension .suo that writes some project options. What is this file for and what options does it store?

Should this file be added to the project in TFS, SVN, or any other Source control that is being used?
Author: LINQ, 2017-05-23

1 answers

This file stores the settings and preferences that are set per user in Visual Studio.

About sending them to an SCM: depends on your intention.

If you are in a project alone and want to keep this file in version control to keep the settings the same in two distinct environments, it seems normal to me. If you're on a project with other people programming together, this doesn't seem like a good idea anymore.

Basically, this is it: keep the file in source control if it's an individual project (or if you want to force Project collaborators to follow their Visual Studio settings). Otherwise, keep these files ignored.

 4
Author: LINQ, 2017-05-23 14:40:16