Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What .net files should be excluded from source control?

What file extensions from a .net application should be excluded from source control and why please?

like image 318
jimconstable Avatar asked Jun 14 '09 09:06

jimconstable


1 Answers

Depends on the project, but I've got the following for a Silverlight + WPF project in my .gitignore:

# Visual Studio left-overs *.suo        # 'user' settings like 'which file is open in Visual Studio' *.ncb        # Used for debugging *.user *.ccscc      # Used for versioning *.cache  # Editor left-overs *~           # (x)emacs *.bak        # Windows related \#*\#        # (x)emacs *.orig       # Own usage  # Compiled files */bin/ */obj/ */Obj/       # git is case sensitive */Generated_Code/ PrecompiledWeb */ClientBin # Windows left-overs Thumbs.db    # Having images in the source tree generates those files in Explorer 

However, the '.suo' is somewhat problematic: it also contains 'user' settings which should have been project settings, like the startup page for a Silverlight application.

The best and only way is to iteratively add the files to exclude. If you're using git, using git-gui to quickly and interactively see the list of files which you've forgotten to exclude. Adapt .gitignore and refresh in git-gui. Iterate until the files left over are the ones you typed in.

Some types of files are not quite clear up front. Be sure you understand all the files you check in. For example, for the RIA services in our Silverlight project we had an authentication database generated by Visual Studio which contained 2 accounts and resulted in a hefty 10Mb .MDB database file(!). Once we understood where it came from, changing it to an SQL dump reduced the size to a (still hefty) 500Kb. Constantly (re)checking prior to the checkin itself is always required, so no list is definite.

like image 191
Rutger Nijlunsing Avatar answered Oct 17 '22 08:10

Rutger Nijlunsing