Tagged Questions

DXcore is the refactoring and productivity tool by DevExpress to extend Visual Studio

learn more… | top users | synonyms

16
votes
4answers
3k views

Disable CodeRush

I don't want to uninstall code rush. I just want to have the chance ti turn it off when I dont want it. Is this possible? (express version)...
5
votes
4answers
968 views

which one to choose? DXCore, Resharper or VSX?

I want to write a visual studio addon to do some code modifications for me (like some specific refactoring). I was wondering which one of these tools should I use and why? we have licenses for ...
3
votes
2answers
83 views

How to get the classes that implement an interface in CodeRush?

I was trying to write a method that returns a list of classes that implements an Interface, but could not do it. Some method like public List<Class> GetImplementedClasses(Interface ...
3
votes
1answer
528 views

Get a list of files in a Solution/Project using DXCore console application

I understand that the following snippets can be used to extract a VS solution info when used in a plug-in. EnvDTE.Solution solution = CodeRush.ApplicationObject.Solution; EnvDTE.Projects projects = ...
3
votes
2answers
121 views

How to to get all methods in a class and store in a file Using DXCore?

I am trying to write a simple console application as a learner with Dxcore open Api's. I have parsed a C# file using the following line of code. LanguageElement parsedFile = ...
2
votes
1answer
89 views

How to get ancestors of a class in Coderush?

I was trying to get all ancestors (Classes and Interfaces) of a Class to a list. I tried this code but did not work. public static List<Class> AncestorList; public static void ...
2
votes
2answers
2k views

Get a list of Solution/Project Files for VS Add-in or DXCore Plugin

I am trying to write a add-in for Visual Studio that, among other things, needs to keep track of every file in a Visual Studio solution. I know what events I need to subscribe to (when a Solution is ...
1
vote
1answer
55 views

Coderush plugin not generating correct try catch end try block

We've created a little plugin to add a block of xml comment and create a try-catch to a function. (we simply add this to each and every function we write) But with the latest devexpress update I'm ...
1
vote
1answer
73 views

Is it possible to get the complete file path of a class where the source code is located using coderush APIs?

I wanted to get the full file path when the caret in visual studio is at object Creation or referring a method of some other class. Something like Class CurrentClass { Class2 object1=new ...