0
votes
1answer
20 views
C# Plugin model with user supplied RegEx
Hi
I have a program in C# WPF which analyzes certain log files. Each log contains lines of data in a format which contains an address and a data offset.
For eg some log file can …
3
votes
2answers
37 views
Architecture for extension/plugin communication
Once the problem of loading plugins is solved (in .NET through MEF in out case), the next step to solve is the communication with them. The simple way is to implement an interface …
1
vote
1answer
24 views
Is it possible to programatically access the call heirarchy in VS2010
Visual studio 2010 has added a call heirarchy function. Does anyone know if it is possible to access this from within a plugin?
0
votes
1answer
53 views
Resources for programming a system that supports plugins
I need resources -preferably a text- about programming systems that supports plugins or extensibility and other related detailed stuff, like handling permissions and resources for …
2
votes
3answers
45 views
Basic MEF workflow/usage
I'm looking to a framework which will allow me to have a simple plugin system in my .NET application. It seems MEF is the framework which Microsoft is endorsing, and will become pa …
2
votes
4answers
563 views
What add-in/workbench framework is the best .NET alternative to Eclipse RCP?
I'm looking for a plugin-based application framework that is comparable to the Eclipse Plugin Framework, which to my simple mind consists of:
a core plugin management framework ( …
0
votes
1answer
53 views
VSX: Custom Package’s Project Type to mimik “Debug >> Start Action >> Start External Program”
I have a custom project type based on the C# Class Library project type in a VSX Package (2008+). For this project type, even though the output is a class library, I want to be ab …
0
votes
1answer
20 views
Editable FullPath property of a file in the Properties grid - Visual Studio 2008
I have a project in my VS 2008 solution containing file items. Each item have a standard read only property called "FullPath" in the Properties Grid.
What is the easiest way to ma …
2
votes
2answers
52 views
When is MEF shipping?
I'm building a product that will ship after .Net 4.0 is released.
Is MEF an integral part of .Net 4.0, so I can count on them being released together, or is it some external compo …
0
votes
2answers
52 views
A guide to Boo’s metaprogramming and extensibility features?
I'm interested in learning about Boo's more powerful features such as syntactic macros, parser support (Ometa?), compiler pipeline, etc. My impression is that these areas have bee …
1
vote
2answers
148 views
Compiling pages with custom extension (for ex .custx) as if they were .xaml files in Visual Studio
In a VS Package (Visual Studio Extensibility), I have a custom extension registered (for ex ".custx") with XamlLanguageService, so that in Visual Studio when the user opens .custx, …
1
vote
1answer
53 views
Extensibility via Mono.Addins or MEF
I have some experience with Mono.Addins, the extensibility framework heavily used in the Mono project. I am aware that Microsoft has recently developed their own extensibility fram …
0
votes
1answer
71 views
Web Extensibility
I am working with QTP now for some time and heard of web extensibility, I have tried to do a lot of research on this topic but to no avail. Can please through some light on this to …
2
votes
1answer
35 views
What are the graphics editors that can be built upon?
I want to start off with a capable vector graphics drawing/editing program and extend it to create a visual designer for a project I'm working on.
Do you know of a graphics edito …
1
vote
3answers
49 views
Extending ASP.NET WebControls: How to effectively hide public properties
I am extending TextBox WebControl to work as a sort of "DateTextBox" which exposes it's value as a property (DateValue) in the code-behind:
public sealed class DateTextBox : TextB …
