I've recently started working on various C# projects in Visual Studio as part of a plan for a large scale system that will be used to replace our current system that's built from a cobbling-together of various programs and scripts written in C and Perl. The projects I'm now working on have reached critical mass for being committed to subversion. I was wondering what should and should not be committed to the repository for Visual Studio projects. I know that it's going to generate various files that are just build-artifacts and don't really need to be committed, and I was wondering if anybody had any advice for properly using SVN with Visual Studio. At the moment, I'm using an SVN 1.6 server with Visual Studio 2010 beta. Any advice, opinions are welcome.
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
According to MSDN:
I would manually include all files that I think I shouldn't version control.
My global ignore pattern is:
.dll .pdb .exe .cache .webinfo .snk bin obj debug _Resharper .user resharper
I would suggest using AnkhSVN - a Subversion source control plugin for Visual Studio 2008/2010.
You can use it to perform your initial add and commit of the solution, projects and sources to the repository and it won't add any of the build artefacts. It won't add anything that is generated by your build, only files that are referenced by your solution. If there are any other bits and pieces you need that aren't in your solution, you can add them afterwards.
In case you are using ignore list, SVN is case sensitive. So remember to ignore bin and Bin folders separately.
Also, I had a question.. why does it take lot of time some times to refresh the status icon? At times it gets very confusing.
Put the following files in version control:
Do not put the following files into version control:
Also, don't put in any object files, executables, auto-generated files (like headers that might be generated).
As for executables and other generated files - there might be an exception if you want to be able to archive releases. That might be a good idea, but you'll probably want to manage that a little differently and possibly in a different place than your source code. If you do this, also archive your .pdb files so you can debug the stuff later. you might want to use a Symbol Server to store you archived symbols (see Debugging Tools for Windows for the symbol server and its documentation).
Here's my list of VS-specific files that I exclude from SVN:
Solution level:
.sln
solution file.suo
solution user options fileProject level:
.csproj
,.vbproj
(and c++ proj?) files.csproj.user
,.vbproj.user
filesbin
directoryobj
directoryIf you use and VS addins, they may generate files that also need ignoring (ie. ReSharper generates
.resharper
and.resharper.user
files).The ignore items can either be ignored explicitly by filename (ie.
MyProject.csproj
), or by a wildcard pattern (ie.*.csproj.user
).Once you have your ignores set up, checking out a clean copy of your source then building should then show no modifications (ie. no new unversioned files).