Paul Hatcher
- Total activity 47
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 18
-
Created Cover all tests not running some assemblies
If I choose “Cover all tests” some assemblies are not re-run leaving the code coverage showing an outdated tests message.I can run the assemblies individually but I can't see what determines whethe... -
Created False positive "You repeated a word"
The language tool is seeing the comments containing a duplicate word as it's not seeing the wrapping tags, e.g. all my controller documentation triggers this…/// <summary> /// Get a model /// </sum... -
Created Namespace using layout
I'm sure it used to be possible to automatically format namespaces as follows... using System;using System.Net;using System.Threading.Tasks;using System.Web.Http; using Bar.Core;using Bar.Data; usi... -
Created 2018.3 Code red lines
Installed the update and my code is now showing red lines even though it compiles correctly. Also tells me it can't navigate to extension methods. Tried clearing the Resharper cache and removing e... -
Created C++ tests, Invalid path to the test executable
Upgraded to the latest Resharper, 2018.3 and my C++ tests are no longer working. I get a message "Invalid path to the test executable. Please specify test run configuration via the project debuggin... -
Created Method has overload with CancellationToken support
Couple of questions about this refactoring... When I apply the refactoring it uses the named parameter even when adding the CancellationToken would be unambiguous e.g. qualification = await Adm... -
Created Signature change introduces new lines
I refactored one of my classes to introduce a new parameter, but the parameter declaration is put on a new line e.g. protected override async Task<IClientResponse> OnImport(Model.Qualification sour... -
Created Operator precedence vs braces
in VS 2015 with R# 2017.2 I get a warning for redundant braces for public static DateTime Round(this DateTime value, TimeSpan interval) { var halfIntervalTicks = (interval.Ticks + 1) >> 1; return v... -
Created C++ google tests not found
I have a mixed C#/C++ project and about half the time the test session explorer fails to find the C++ tests. There also does not seem to be a way to force R# to re-scan to locate any missing tests ... -
Created Resharper NUnit 3 Parallelism
For NUnit 3 Does Resharper obey the NUnit Parallelizable attribute, e.g. if I set ParallelScope.Self, that says that the fixture can be executed in parallel with other fixtures Similarly, if I chan...