Richard Deeming
- Total activity 632
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 47
- Subscriptions 216
-
Created Incorrect "invalid CSS" warning for JQuery selectors
JQuery selectors allow syntax which is not valid CSS. R# generates an "invalid CSS" warning for perfectly valid JQuery selectors. Eg: $(this).find("option:selected[value!='']") Warning: Syntax is ... -
Created Massive R# error logs
Every day so far this week, I have a R# error log. The files range from 17Mb to 325Mb, and seem to be full of exceptions. Do these automatically get reported, or do I need to upload the logs somewh... -
Created Ctrl+Alt+Ins not working
AnsweredThe Ctrl+Alt+Ins shortcut for the "generate file besides" command does not work when the cursor is at the very start of a C# file. If I move the cursor to any other position in the file - even one ... -
Created BUG: Incorrect "return value never used" warning (R# 2019.1 EAP 4)
A non-async method which returns a Task (rather than a Task<T>) which is awaited displays an incorrect "return value is never used" error. Eg: static async Task Main() => await TestMe();static Task... -
Edited WPF StringFormat not recognised
The StringFormat property - The complete WPF tutorial R# can't seem to cope with a StringFormat in a WPF binding if the format contains a comma: <TextBlock Text="{Binding Path=VatReturn.TotalAcquis... -
Created Handlebars.js - incorrect "Unexpected token" error
AnsweredI'm using Handlebars.js in an ASP.NET MVC application. When I try to use the {{#if ...}} block helper to wrap the checked attribute of a checkbox or radio button, R# is throwing up an incorrect "un... -
Created "Cannot resolve template" with UIHint
AnsweredI have an ASP.NET MVC 5.2.7 application which uses UIHint on several model properties to specify the editor template. The project compiles and runs as expected, and uses the correct editor template... -
Created R# causing VS2017 to crash
Second time in the last two days this has happened whilst working on an ASP.NET Core project: I can't see any sign of a log file to help diagnose the problem. -
Created WebForms: R# does not recognise async model binding
Async model binding was added to WebForms in .NET 4.6 back in 2015: Cool ASP.NET Web Forms Features in 2015 – Async Model Binding | ASP.NET Blog R# 2018.1 still doesn't recognise it, and flags it a... -
Created Incorrect "symbol not resolved" errors
I have a large ASP.NET MVC (not Core) project, which builds and runs without error. Every other day, R# decides that two particular extension methods from a referenced assembly cannot be resolved. ...