Rory Primrose
- Total activity 34
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 12
-
Created No breakpoints hit when debugging plugin
I've just started looking at my plugin project that has been neglected for almost a year. I converted the project from VS2008 to VS2010, reported the reference path to the R# 5.1 binaries directory... -
Created What is the correct way to replace type nodes
The plugin I am upgrading converts to and from alias/clr type names. The previous version replaced IDeclaredTypeUsageNode, ITypeUsageNode, IReferenceExpressionNode and IPredefinedTypeExpressionNode... -
Created ModificationUtil.ReplaceChild throws NullReferenceException
I have a plugin that I am upgrading to v5.0. The plugin converts built in value type to and from CLR and alias type representations. As part of this update, I have also added a context action to th... -
Created Search with pattern does not find "$valueType%?"
One of the first things I wanted to try out with R#5 was structural search. The feature I wanted to implement was to convert valueType? references to Nullable<valueType>. Unfortunately it seems tha... -
Created How do I add a "using System;" statement to a c# file?
It looks like the UsingUtil class is helpful for achieving this, however every ReSharper implementation of IUsingDirective is marked as internal. How do I create a new IUsingDirective? Do I have to... -
Created How do I implement a Code inspection item that can provide a QuickFix
I want to provide functionality in my formatting module as part of code inspection and also as a quickfix item for the code selected. Is there any information documented about how to achieve this? -
Created What parameter values are required to create an IReferenceExpression
I am writting a code formatting modulue that converts types to and from alias types (String -> string -> String for example). I have encountered an issue where the code is something like String val... -
Created CodeFormatModule to change types from inbuild alias types
I am writing a ICodeCleanupModule as suggested by Ilya on this feature request but am hitting some issues. The code I have is something like this: CLRTypeName typeName = new CLRTypeName("System.... -
Created Feature request - MSTEST
Hi guys,Could you please please please include support for MSTEST in the next release of ReSharper. Due to organisational constraints, not everyone can use NUnit and it is disappointing that this h... -
Created Attribute code formatting problem
I have my configuration set to group attributes into the same combination. When formatting a class the following [DeploymentItem("MyAssembly.dll")] public void MyMethodTest()...