We have just added a new project to TFS. The developer was using resharper. The resharper files were added to TFS automatically.
I installed Resharper 5 with visual studio 2010 Team system with NUnit. It finds NUnit and shows 2 types of tests in the options开发者_如何学编程: MSTest and NUnit.
I\'m running NUnit tests from Resharper. I want to track exe开发者_StackOverflow中文版cution process so my question is where can I find logs produced by my application?
Here is a piece of code: IUser user = managerUser.GetUserById(UserId); if ( user==null ) throw new Exception(...);
This code outputs True. using System; using System.C开发者_如何学JAVAollections.Generic; public class Default
I have a method v开发者_如何学编程oid abc(IAnimal animal). When I type in another method abc( how do I make ReSharper show a list of objects implementing IAnimal?
In the ReSharper Options menu under formatting style, it displays what the code looks like after formatting.Are these stored anywhere?
Resharper warns me when parts of my code are never used; this is very helpful. However, I have quite a few classes that are not referenced by other code directly. These classes are used in the depend
I\'m very new to ASP.net and webform applications, and I\'m inheriting some pretty bad code, but I\'ve got a strange problem that I can\'t figure out or figure out how to google about it.
I\'m currently using the Silverlight Unit Test Framework, but I\'d prefer to run tests directly in VS2010.I\'m curious to know what approaches and tools everyone else uses.