0
votes
0answers
15 views

digiKam: how to extend it? Plugins or core changes?

I want to use the digiKam open source project to perform operations for which this program has not been designed for. A first extension would allow to view multiple images simultaneously on the main ...
-1
votes
1answer
62 views

how to make my existing application an extendable app using vb.net [closed]

I have an existing application built in vb.net. What I would like to do is to add some plugins or add-ins to my existing application. How could i do that? Awaiting for your positive replies.. ...
12
votes
3answers
174 views

Implementing untrusted plugins in .NET web application

I'd like to develop an application that accepts plugins from the user community, similar to how Chrome or Firefox does. This would be a web application, so each "instance" of the application for ...
0
votes
0answers
133 views

Minimum version of Visual Studio required to debug MS Office 2013 Plug-In

We have created a VSTO Plug-In for Outlook in Visual studio 2008 and want to debug the same with Ms Office 2013. However i m getting following Error Message when i tried to debug. "You cannot debug ...
0
votes
0answers
17 views

Plugin Architecture: How to expose the core application's datasets

does anyone have experience in developing plugins wherein the plugIn needs access to some dataset. Q: how to go about correctly exposing the dataset as not to make it vulnerable or Q: how to allow ...
0
votes
1answer
120 views

Error on uninstalling / installing VSTO Excel plugin

I have a problem with VSTO packages. I now, there are many ways to cleanup the download cache, to deinstall the app and much more, but i tried it all and still have the problem. I deinstalled the ...
0
votes
1answer
79 views

Mono addin doesn't load if initialized from autocad

I've a quite complex application, this application is structured like so: Main.exe (is a standalone application) Main.exe uses Project1.dll (which contains a form) the form contained inside the ...
0
votes
2answers
87 views

Mono.Addin implementation doesn't retrieve addins

I'm writing an extendible application using Mono.Addins framework, C# and visual studio 2010. the structure of my application is the following: project1: namespace Plugins { ...
1
vote
2answers
64 views

how to write an app to allow for plugins?

I could have sworn there are several tutorials on this, but I can't seem to find them, and can't remember how I did it in the past (been years and with a different company)... I'll be working in C#. ...
1
vote
2answers
120 views

Plugin development for Excel

I need to develop a plugin for excel. It should behave similar to Plugins for Eclipse. It should be available as a context sensitive menu, should have access to spreadsheet contents currently opened, ...
0
votes
0answers
51 views

Is there any VS Add-in to autoupdate XML Doc-Tags with the editing date/version?

When I change my code (methods, properties, class) I usually write manually the date and the assembly/file version in the XML Tags for documentation comments in order to remember when I edited last ...
0
votes
1answer
152 views

UserControl Plugins using System.Add

I know the there is plenty of threads about loading plugins in new app domain. My fault I didn't read them before.. I have this school project - plugin based app, which is almost done. Except one ...
1
vote
1answer
45 views

How does an addin retrieve and process data from the AddinRoot?

I'm planning to use Mono.Addins in my C#/.NET project. For that, I've read the Programming Guide and Reference Manual presented in codeplex.com, downloaded the latest version of source code from ...
0
votes
0answers
109 views

Visual Studio Addin, need to detect when text is selected

I am writing an addin for actually Microsoft SQL Management Studio (I know its not supported, just VS plugin are), but I think starting the plug in as a VS plug in is fine for me. The VS plug in, ...
3
votes
1answer
659 views

Extending the Visual Studio 2010 C# Intellisense?

Basically I would like to add extend the IntelliSense of Visual Studio 2010 (C#). Is it possible somehow? We use objects generated at runtime - thus IntelliSense doesn't work for them. We have ...
3
votes
3answers
650 views

Writing an Addin or Plugin Framework in C#

I am writing an Addin Framework in C# and I'm wondering how I can make Addin's unloadable without requiring a restart of the application. I heard of AppDomains but how do these work? Can an Addin add ...
3
votes
1answer
352 views

Visual Studio: How to write Editor Extensions with WPF

Im trying to write a editor extension for Visual Studio. I have the downloaded VS SDK and created a new Visual Studio Package project. But the dummy control created for me is a Windows Forms control ...
5
votes
1answer
373 views

VS 2008 Addin -> How to add a submenu at a specific position in a context menu?

I'm working on an addin for Visual Studio 2008 and want to add a permanent submenu to contain my context-sensitive commands to several context menus (such as "Project", "Item", ...). I have had no ...
0
votes
1answer
354 views

develop visual studio add-in with custom intellisense for HTML pages

I want to develop a Visual Studio 2010 add-in (or any other solution for that matter) that will support customized intellisense for HTML pages. We use special notation in our HTML pages that is ...
1
vote
1answer
244 views

Visual Studio & TFS: How to add a custom tab on Check In

I want to write a custom Plugin for the "Check In" window in VS. It should be a new point in in the menu and replace the view on the right. To make it more clear I've attached an image. I don't want ...
0
votes
1answer
116 views

System.AddIn vs System.ComponentModel.Composition [duplicate]

Possible Duplicate: Choosing between MEF and MAF (System.AddIn) What are the differences between the import and export functionality of the System.ComponentModel.Composition namespace vs ...
0
votes
1answer
1k views

System.Addin tutorial / books to read [closed]

Now Im considering about writing application extension framework. I have already read through tons of questions about Managed Extensibility Framework and Managed AddIn Framework on SO and have ...
0
votes
1answer
183 views

How should I organize reference assemblies for AddIns when using Microsoft AddIn Framework

Here is my scenario: I am using the Microsoft AddIn Framework for my project in order to have a nice plugin architecture. I also have a custom API I made compiled into a dll. The host application ...
0
votes
2answers
230 views

C# WinForms program with ability to make C++ plugins for it

I am creating a C# winforms application targeting the .NET 3.5 framework. I want this program to be able to have plugins. Hopefully the plugins can be created in unmanaged C++. If there is no ...
1
vote
1answer
418 views

Ms Word plug-in with Java

I'm developing an advanced spellchecker for some language. MS Word's default spellchecker for that language is not satisfactory. So I decided to integrate my spellchecker with MS Word. Unfortunately ...
6
votes
3answers
572 views

Moving data across the appdomain with good performance?

A little background I'm working on an .net application that's uses plugins heavily, the application can request data from the plugins that is then sent back and displayed by the application. First I ...
0
votes
1answer
324 views

VSTO addin dependency resolution

I have a VSTO addin, which works fine. I am trying to give it a plugin-loading mechanism so that others can add plugins to my plugin. I sounds horrific, I know, but it seems to best option for now. ...
1
vote
1answer
2k views

Highlight all occurrences of a selected object with ReSharper

I was used to use RockScroll (or MetalScroll), but when I started to use ReSharper my RockScroll start to show some bugs. Well, this is scope to another discussion ...
6
votes
4answers
2k views

plug-in architecture based c/c++ application

I need to know how to start writing an application based on plug-in architecture. I mean how to write a base code and let others develop the application by adding the plug-ins they write. I know that ...
0
votes
1answer
99 views

Any Addin for Visual Studio 2008 which would sort the imports?

I have seen plugins for VS 2005 and also for C# environment in VS2008 but not able to find for VB.NET environment in VS 2008.I want it to sort for each file, is there any addin for this?
3
votes
2answers
2k views

Visual Studio - plugin finding/removing dead code?

Anyone knows any free Visual Studio add-in that would find and/or delete dead (unused) code? I saw such possibility in MZ-Tools, but it's a little expensive as for private use ;)
1
vote
4answers
370 views

Proper alternative for the unreliable Search and Replace of Visual Studio?

Today I was actually wondering why I've stuck with it for so many years without actively complaining about it. Doing a "search & replace in all files and folders of a solution" is something I ...
1
vote
2answers
164 views

Is there any addon for Visual Studio that enables drag-and-drop references?

I would like to drag a dll to my project references. Is it possible? Is there an plugin for it?
1
vote
4answers
191 views

What code snippet plugins are available for VS2008?

I want a code snippet editor for VS2008. I'd like to just hit a hot key, bring up an editor, type in my snippet, run to my break point and step through. I don't want to have to create a project, ...
10
votes
3answers
2k views

MEF vs Mono.AddIn

I'm developing a .NET 3.5 C# desktop application. It should be extensible via plug-ins. Are there any articles etc. discussing the differences between MEF and Mono.AddIn to help me make an informed ...
3
votes
2answers
5k 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 ...
0
votes
1answer
369 views

Plugin Framework - can there be too many addin assemblies?

The product I'm working on needs to be built in such a way that we have a quote engine driven by a pluggable framework. We are currently thinking of using MAF, so we can leverage separation of the ...
3
votes
1answer
6k views

What ClearCase plugin to use with Visual Studio 2008 SP1

At work I have to use ClearCase v7.0.1.2 and ClearQuest v7.0.1.0 with Visual Studio 2008 SP1. Am running on a Windows XP SP2 box. I've done some searching but not found an official installer yet, can ...
1
vote
2answers
2k views

How to install a plugin or add-on with WiX

I need to install plugins (or add-ons) to an application we write. I user WiX for the installer of the application. A plugin is, in my mind, an optional part of the application. It needs to integrate ...
2
votes
3answers
287 views

Lite version of a Java software

Our software currently has many features. I've been asked to make a free trial version which consist of a lightweight version of the full software. Only a few specific features would be available in ...
2
votes
3answers
607 views

“in-line find” plug-in for Visual Studio

Is there a plug-in (or built-in feature) for Visual Studio 2008 to be able to do a quick in-line find in your code? I am unhappy with the find feature (Ctrl+F). I don't like how it pops up in its own ...
3
votes
1answer
318 views

.Net Add-ins and versioning

Our media center add-in is shipped as a single DLL which lives in the GAC (mediabrowser.dll), we allow users to write extensions for our add-in by referencing our DLL and accessing the pre-defined ...
0
votes
1answer
191 views

What can you do with Microsoft Outlook plugins

I have no experience in plugin development for MS Office. Can anyone tell me what is possible to do with the MS Outlook plugin API. The specific thing I am interested in is to change the way that ...
1
vote
2answers
3k views

c# - assigning methods to dynamically created controls

I'm designing an application that supports plugin development. Its more of a learning exercise. All of the assemblies (plugins) being loaded into my app contain a showPrefs() method. As I load each ...
4
votes
1answer
1k views

Ideas for an extensible (addins/plugins) WCF service host?

I'm looking for suggestions about how can I build an extensible WCF server (with dynamically loaded services), preferably using System.Addins or MEF. The server should host any WCF service (contained ...
5
votes
5answers
2k 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 (Equinox / OSGI), ...
19
votes
8answers
5k views

How to load plugins in .NET?

I'd like to provide some way of creating dynamically lodable plugins in my software. Typicial way to do this is using the LoadLibrary WinAPI fuction to load a dll and calling GetProcAddress to get an ...