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
November 05, 2012 15:22
When do you want the tests to run? Looking at the code, the first thing that strikes me is that you're trying to run tests from the constructor of your component. It would make more sense to run th...
Community
ReSharper Open API / SDK
Make Tests Run After Event
0 votes
Created
October 31, 2012 01:50
Hi Jonathan. Thanks for the comment. Yes, a QuickFix is wired up to the alt-enter menu based on the type of the highlighting applied to the code under the cursor. ReSharper looks for a constructor ...
Community
ReSharper Open API / SDK
What is the IContextAction that provides the Create Class Quick Fix?
0 votes
Created
October 02, 2012 15:17
Hi Bred. I'm assuming you mean the Unit Test Session window, which displays the tests as they are run.You should be able to add actions to the context menu by editing your actions.xml file and addi...
Community
ReSharper Open API / SDK
Right click context menu in unit test session; possible to add a menu item?
0 votes
Created
January 21, 2014 15:16
OK. Glad it's working again.
Community
ReSharper Open API / SDK
Unknown Switch :ReSharper.Plugin problem
0 votes
Created
December 20, 2013 15:54
Given an IProperty, you can use the ReturnType property to get the type of the property, e.g. List<Dog>. This gives you an IType, but you need to convert this to an instance of ITypeElement, so you...
Community
ReSharper Open API / SDK
How to I get the underlying type of a generic list from a property: List<Dog>
0 votes
Created
December 16, 2013 15:38
It's already there! http://www.nuget.org/packages/JetBrains.ReSharper.SDK/8.1.555
Community
ReSharper Open API / SDK
ETA for R# 8.1 RTM SDK on NuGet
0 votes
Created
December 11, 2013 11:15
You can use the TypeElementUtil.GetAllSuperTypes extension method on IClass (well, ITypeElement) to return a list of declared elements that represent the hierarchy. You can then examine each elemen...
Community
ReSharper Open API / SDK
How to I find out if an class inherits from another type: class Dogs : List<Dog>
0 votes
Created
December 11, 2013 10:57
Answered on StackOverflow: http://stackoverflow.com/questions/20475345/assembly-gettype-fails-to-load-list1mymodel-type-from-resharper-plugin-on
Community
ReSharper Open API / SDK
Assembly.GetType fails to resolve List`1[[MyModel]] in ReSharper plugin only
0 votes
Created
July 03, 2013 10:26
The implementation of AddAttributeBefore adds the attribute to the anchor's attribute list, rather than creating a new attribute section. There are no helper methods to create a new attribute secti...
Community
ReSharper Open API / SDK
Adding and modifying attributes - questions
0 votes
Created
November 08, 2013 11:55
You need to create a plugin test project, using the project templates installed by the SDK. Then you can create functional (not unit) tests. The test framework will create an in-memory ReSharper en...
Community
ReSharper Open API / SDK
How to obtain IType/ITypeElement for Testing?
0 votes
«
First
‹
Previous
Next
›
Last
»