views:

869

answers:

2

What SVN Ignore Pattern should TortoiseSVN have for a VB.NET solution?

+14  A: 

this is what I use for C# w/resharper, should work just the same with vb.net:

build deploy */bin  */bin/* obj *.dll *.pdb *.user *.suo _ReSharper*  *.resharper* bin
Karl Seguin
If you're using hg (mercurial) then don't forget to add a "syntax: glob" on the top of all in the .hgignore file.
Spoike
+4  A: 

I always add Thumbs.db in as well, because I hate having those files versioned. Probably more of an issue for web developers

Glenn Slaven
good call. that would be annoying.
Brandon Montgomery