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
December 18, 2014 17:33
I don't believe the SDK provides any means of doing integration tests like this. We do run them internally, but I don't think we ship anything to help. The best thing you can do is write tests to a...
Community
ReSharper Open API / SDK
UI Test a WPF Windows that's part of a R# Extension?
0 votes
Created
December 15, 2015 10:49
You need to provide a value for the Icon property. This is a System.Type that is a derived type of CompiledIconClass.
Community
ReSharper Open API / SDK
How do I add an Icon to my Action?
0 votes
Created
November 11, 2015 11:22
You want to do something like this. The PredefinedType class has a number of properties to get the IDeclaredType of IEnumerable<T>, List<T>, IList<T> and so on. Once you've got this, you can use Ty...
Community
ReSharper Open API / SDK
How to determine IDeclaredType representing a generic List type?
0 votes
Created
November 02, 2015 10:22
You should be able to inject IProductInfo. But since we've changed how products work (they're essentially plugin packages into a base product), this might just get you the product info for the base...
Community
ReSharper Open API / SDK
How can I get the version of ReSharper currently being used?
0 votes
Created
October 12, 2015 22:55
You'll get an exception. The component model isn't really designed to be THAT flexible. It will resolve a single interface to its most derived instance, so it allows extensions to override built in...
Community
ReSharper Open API / SDK
How to decorate a part
0 votes
Created
September 21, 2012 14:06
As of ReSharper 6.1 + 7.0, Action handlers cannot have dependencies injected. They require either a parameterless constructor, or a constructor with a single argument, which can be either the strin...
Community
ReSharper Open API / SDK
How to get at EnvDTE from a plugin?
0 votes
Created
September 21, 2012 18:47
What versions of ReSharper and Visual Studio are you using? I successfully retrieved the DTE object in an action handler constructor with ReSharper 7 + VS2012.The parameterless constructor must be ...
Community
ReSharper Open API / SDK
How to get at EnvDTE from a plugin?
0 votes
Created
September 24, 2012 10:10
Hmm. I can't reproduce this. It looks like I'm using the same version of ReSharper, VS and EnvDTE.dll as you, and it all seems to work. Could you post a simple repro? You can email it to me at resh...
Community
ReSharper Open API / SDK
How to get at EnvDTE from a plugin?
0 votes
Created
September 24, 2015 08:37
Another issue might be that since DTE is a COM interface, and if it's referenced with Embed COM Interop Types set to true, the System.Type used to identify the DTE object is different to the System...
Community
ReSharper Open API / SDK
How to get at EnvDTE from a plugin?
0 votes
Created
September 24, 2015 08:52
You need to use ITextControl.Selection.SetRanges to change the selection, or use the SetRange extension method to make it a little easier.
Community
ReSharper Open API / SDK
Is there an API to select a portion of code from within a ExecutePsiTransaction
0 votes
«
First
‹
Previous
Next
›
Last
»