Home
ReSharper Support | JetBrains
Contact Support
Community
Sign in
Matt Ellis
Total activity
1008
Last activity
August 03, 2023 15:35
Member since
July 05, 2009 00:17
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
397
Activity overview
Articles (0)
Posts (4)
Comments (607)
Sort by recent activity
Recent activity
Votes
Created
July 11, 2014 12:07
Unfortrunately, .csproj files are not included in the standard IDaemonStageProcess implementation. Firstly, because they're not visible documents, and secondly, they are explicitly excluded from so...
Community
ReSharper Open API / SDK
Code inspections at the project level
0 votes
Created
October 01, 2014 21:27
I'm not sure ReSharper can do this, unfortunately. When deleting files from a project, ReSharper uses the IVSHierarchy interfaces to delete, which causes the solution explorer to refresh automatica...
Community
ReSharper Open API / SDK
Delete file and update Solution Explorer
0 votes
Created
October 06, 2014 09:23
Yes, ReSharper supports the concept of a Bulk Fix, which is where the alt+enter menu gives the option to fix the current issue, and all issues in the file, project or solution. It's documented here...
Community
ReSharper Open API / SDK
Delete file and update Solution Explorer
0 votes
Created
September 22, 2014 14:01
You need to get a hold of IMethodDeclaration, rather than IMethod, and then you can use IMethodDeclaration.SetType().The IMethod interface is the semantic information about the method, and IMethodD...
Community
ReSharper Open API / SDK
How do I replace the ReturnType of a IMethod?
0 votes
Created
September 22, 2014 14:18
This page provides details on how to implement a macro extension: http://confluence.jetbrains.com/display/NETCOM/4.04+Live+Template+Macros+%28R8%29To add parameters, implement the IMacroDefinition....
Community
ReSharper Open API / SDK
Parameters in IMacroDefinition, IMacroImplementation (Live Template Macro) [ReSharper 8+]
0 votes
Created
January 06, 2014 15:22
Given a classDeclaration of type IClassDeclaration, you should be able to call IClassLikeDeclaration.AddSuperInterface(), passing in the declared type of the interface to add.
Community
ReSharper Open API / SDK
How do I make a class inherit from an interface: public class Dog : INotifyPropertyChanged
0 votes
Created
June 26, 2014 13:57
This is because the CSS configuration data isn't loaded. When trying to parse the aspx file in the test, ReSharper creates multiple PSI trees for the file - aspx, C#, JS and CSS. Those trees are th...
Community
ReSharper Open API / SDK
"browser not found by alias 'C" exception when deriving from AspHighlightingTestBase
0 votes
Created
June 26, 2014 10:48
I don't think there's anything quite so generic. But ReSharper does provide a number of navigation methods, most of them defined in TreeNodeExtensions. This returns an enumerable of siblings, or ch...
Community
ReSharper Open API / SDK
Find a specific ITreeNode in a sub tree
0 votes
Created
June 25, 2014 11:27
I'm not aware of any old APIs for this, but you can find if a project is a test project by checking IProject.ProjectProperties.ProjectTypeGuids and look for {3AC096D0-A1C2-E12C-1390-A8335801FDAB}. ...
Community
ReSharper Open API / SDK
How to tell if a project is a test project?
0 votes
Created
June 25, 2014 11:04
The unwritten standard is to display a tooltip if the action fails. The underlying bulb action of a quick fix/context action is usually built on BulbActionBase (although it only needs to implement ...
Community
ReSharper Open API / SDK
How to indicate a problem to the user?
0 votes
«
First
‹
Previous
Next
›
Last
»