Richard Deeming
- Total activity 632
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 47
- Subscriptions 216
-
Created MVC5 v5.2.8 breaks navigation
AnsweredAfter updating the MVC5 NuGet references to v5.2.8, which was released 10 days ago, R# 2022.1 no longer allows me to navigate to the controller / action from a Url.Action call in a Razor file, and ... -
Created Supposedly "fixed" issue not actually fixed! (Cannot resolve event "formdata")
Cannot resolve event "formdata" This issue was marked as "fixed" in 2022.1 EAP 9. However, after installing the final release of 2022.1, the error has NOT been fixed. -
Created License error
CompletedMy license is valid until October 2022: My R# 2021.2.2 installation tells me my license has expired: Why is R# unable to use the R# license we have paid for? -
Created Cannot resolve event "formdata"
The HTML form element's formdata event has been supported since Opera 64 (October 2019), Firefox 72 (January 2020), and Chrome 77 (September 2019):https://developer.mozilla.org/en-US/docs/Web/API/H... -
Created More problems with parameter name hints
AnsweredR# 2021.1.4 seems to have reintroduced the problems with the parameter name hints: Both screen-shots were taken from the same session. In one tab, the space for the hint is present, but the hint ... -
Created "Merge into pattern" error
In a project with C# 9 enabled, given the code: 1 <= index && index <= 26 R# suggests that I "merge into pattern". Doing that results in: index <= 1 and <= 26 This is clearly incorrect - the first ... -
Created Newtonsoft JsonConverter annotations
AnsweredCreating a custom JsonConverter, R# tells me to annotate the following methods: public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)p... -
Created BUG: Cannot apply [ItemNotNull] to IAsyncEnumerable
This attribute should apply to IAsyncEnumerable<T> in exactly the same way as IEnumerable<T>, but R# 2021.1.1 complains that it is meaningless. -
Created "To improve performance, some third-party web files are not indexed."
CompletedCan we stop this message from popping up every single time we open a solution with a web project in it? I have already explicitly excluded the files which are not being indexed. I don't need R# to... -
Created BUG: Type keywords not suggested in generic type parameters (R# 2021.1)
CompletedGiven the following class: static class Generics{ private static Action<T1, T2, T3> Create<T1, T2, T3)() => null; private static readonly Action<int, int, string> fn = Create<...} Auto-comple...