I'm trying to develop an MS Office Addin in C# .Net and I don't have access to Visual Studio. Instead I'm using SharpDevelop as my IDE, (but my question is equally relevant to anyone developing using any other IDE or compiling from the command line...)
I've done a bit of searching for guides on how to develop AddIns, but they all seem to require Visual Studio and follow these steps:
- Install the Interop Assemblies
- Create a Visual Studio .Net Project (I'm unable to do this bit)
- Extend the VS ThisAddIn template
What I've managed to do is to:
- Install the Interop Assemblies
- Create a C# empty SharpDevelop project
- Add a GAC reference to Microsoft.Office.Interop.Outlook
- Add a COM reference to Microsoft Office 12.0 Object Library
- add the line
using Outlook = Microsoft.Office.Interop.Outlook;
- and the line
using Office = Microsoft.Office.Core;
- Look at some example code and realise that they all refer to VS templates and VSTO libraries (Microsoft.Office.Tools) which I don't have.
Where do I go from here? Is there a guide/tutorial I've missed, or can someone provide some pointers?