Hi Sebastian,
first of all thanks for the great library you have created!!!
I am using it to develop an Office plugin. This plugin is working on my local machine when (somehow magically) deployed through Visual Studio. All fine till here. However, I need to deploy it to other people's computers (who do not have VS installed) and I am really struggling to find a way on how to do that.
My plugin looks like this:
I am also happy to provide any additional details needed.
Best regards,
D.
first of all thanks for the great library you have created!!!
I am using it to develop an Office plugin. This plugin is working on my local machine when (somehow magically) deployed through Visual Studio. All fine till here. However, I need to deploy it to other people's computers (who do not have VS installed) and I am really struggling to find a way on how to do that.
My plugin looks like this:
[COMAddin(Constants.ProjectName, "Tool", 3)]
[Guid("B3F60319-1A11-4F3E-9C1B-3AE908D9CA86"), ProgId("Tool.OutlookIntegration")]
public class OutlookIntegration : COMAddin
{
public OutlookIntegration()
{
this.OnStartupComplete += new OnStartupCompleteEventHandler(this.Integrate);
_settings = new Settings();
}
/* Integrate creates a menu item which does what I need. */
}
The project type is library. Now, the question is how do I make this run on someone elses PC? If you happen to know about some tutorial or anything like that, please let me know.I am also happy to provide any additional details needed.
Best regards,
D.