Matthew Watson
- Total activity 43
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 15
-
Created Keyboard shortcut for "Move to resource"
AnsweredI used to have the "Move to resource" function bound to Ctrl+Shift+R but somehow I've lost that binding. What command should I be looking for in the Visual Studio 2022 Keyboard Mapping settings to ... -
Edited [AllowNull] attribute ignored by Resharper
Resharper version = 2020.2.1 Consider the following code from a .Net Core 3.1 console application: using System;using System.Diagnostics.CodeAnalysis;#nullable enablenamespace ConsoleApp1{ class... -
Edited Incorrect suggestion to "Convert to 'using' declaration
(Using Resharper version 2020.1.4) Consider the following console application: using System;using System.Runtime.Serialization;using System.Text;using System.Xml;namespace ConsoleApp1{ class Pro... -
Edited What does "Enable nullability analysis when C# 8 compiler nullable warnings are enabled" do?
Under Resharper Options | Code Inspection | Settings there is an option: "Enable nullability analysis when C# 8 compiler nullable warnings are enabled". What does this actually do, and in what circ... -
Created Resharper C# bug: [PublicAPI] prevents "field can be made readonly" warning for private fields.
Consider the following code: public sealed class Test{ private int _value; public Test(int value) { _value = value; } public int Value => _value;} Resharper will correctly s... -
Edited How to stop Resharper from removing [CanBeNull] when typing “?” at the end of a reference type name?
CompletedI am going through the process of converting my .Net 4.8 (not Core!) projects to use the new C# 8 "nullable reference" feature. To do so, I am changing each source code file in turn by adding #null... -
Created Resharper [Pure] versus Microsoft [Pure]
The JetBrains documentation for [Pure] is here:https://www.jetbrains.com/help/resharper/2016.3/Reference__Code_Annotation_Attributes.html#PureAttributeIt states that it is the same as System.Diagno... -
Created [R# 10 bug] Typing $"{ results in $"{}}"
If you type the following into a C# file:$"{it gets converted to the following text: $"{}}"Obviously this has an extra } at the end, which means you have to delete it manually.Also see the discussi... -
Created Getting "no valid license found" for EVERYONE in our organisation
Hiya,We've suddenly (and simultaneously) all had Resharper disabled on our PCs. When we go to License Information, it says "No valid license found".We have the "Use JB Account" setting ticked. If w... -
Created Publishing a Click Once app from Visual Studio 2013 fails after upgrade to R# 8.2.0.2160
Publishing a Click Once app from Visual Studio 2013 fails after upgrade to R# 8.2.0.2160I have a completely reproducable issue that affects ALL ClickOnce apps:If I turn off R# I can publish and rep...