David Roberts

- Total activity 87
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 32
-
Created combined assemblies and website solution - intellisense failures
I used to use seperate VS instances for assemblies (106) and a website, but found that with VS2010 and the latest resharper I cann just use a single solution and VS instance, which makes resharper ... -
Created How can I reduce indentation of anonymous method parameters
eg: return DAOFactory.Use(true, dao => { return new ExactValueBudgetKeyComponent() ... -
Created anyone else using R# in a solution with many assemblies (~80) AND a website?
It seems that whenever the assemblies are compiled, VS2008 moves the compiled assemblies into the website bin folder, causing the website to be at least partly compiled (app_code etc?, tho maybe on... -
Created any known app.config problems with resharper 6.1 EAP mstest unit testing support?
I dont think it is finding the file at all.The app.config was NOT being copied to the deployment folder ...\bin\Debug\TestResults\d.roberts_WAX-DAVIDR 2011-11-14 12_48_10\Out so I added it to the d... -
Created reverse dependencies
Is there any way of browing all the references from a class (or method) to anything else. This is like the reverse of "All Usages", it instead finds everything that "is used"I suspect the informat... -
Created VS2010 info pop ups (info tips?) and resharper info popups
The resharper (I assume) info popup appears over the VS2010 info popup when i hover over a symbol when not debugging.and with some mouse fiddling I can get to the VS2010 (?) info popup below it:I r... -
Created any way to export inspect hierarchy methods/properties/etc?
the RHS/Bottom (Show Members area) of the Hierarchy inspection results window cannot currently be exported or copied to the clipboard in anyway as far as I can figure out, and this would be very us... -
Created any feature to spot duplicate code that could be methodised/parameterized
I'm looking into refactoring a 14000 line legacy c# code behind file!! and I know it has quite a few areas of very similar code. Somebody has come along and copied large lumps of code and modifie... -
Created where can I see detailed unit test output in mstest runner?
I see answers to similar questions from 2007 but I cant find any "Preview button" on the toolbar, and I'm missing the Console.WRiteline output I get with the VS test runner.I get the basic output:t... -
Created refactor suggestion? refactor out parameters to return a response class
so for instance:the following:public bool GetValue(Guid id, out string currencyCode, out bool exceedsBudget, out decimal value)could be refactored to:public GetValueResponse GetValue(Guid id)where:...