What are the various “Build action” settings in Visual Studio project properties and what do they do?

For the most part, you just take whatever Visual Studio sets it for you as a default… I’m referring to the BuildAction property for each file selected in Solution Explorer. There are a number of options and it’s difficult to know what each one of them will do. 8 s 8 None: The file is … Read more

Should I add the Visual Studio .suo and .user files to source control?

Visual Studio solutions contain two types of hidden user files. One is the solution .suo file which is a binary file. The other is the project .user file which is a text file. Exactly what data do these files contain? I’ve also been wondering whether I should add these files to source control (Subversion in … Read more