Tagged Questions
3
votes
2answers
291 views
How do I clear the [Ignore] cache for test methods? (without restarting Visual Studio)
I have some tests that were marked as [Ignore], but now, I want to run them again, so I remove the [Ignore] attribute, but Visual Studio still treats them as ignored.
What can I do to clear the cache ...
2
votes
4answers
422 views
Visual Studio C# Ignore an Error
Is there a way in C# that I can signal to VS to force it to ignore an error on a specific line?
I have a variable, pos2, that is only initialized some of the time (it's random). However, when it is ...
2
votes
1answer
702 views
How can I get the Ignore Pattern in TortoiseSVN (v1.6.13) to work properly with Visual Studio (C#) files?
Using the UI I have set my Global Ignore Pattern to
*.suo *.user *.ReSharper.* *ReSharper* *.5.1.ReSharper.user bin Bin obj
Obj Debug Release
but it doesn't appear to do anything.
All *.user and ...
0
votes
1answer
82 views
Ignore an entire directory in Visual Studio before a build?
I currently have a project I am building in Visual Studio 2005 and I need to be able to build the part of the project some of the time with directory A and sometimes with directory B and never both. ...
2
votes
5answers
2k views
What is the shortcut to skip all break-points in VS?
When I am at a break-point and if I want to ignore all the rest of break-points and move on, what shortcut should I use?
thanks
291
votes
15answers
49k views
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. Does anyone know ...