Hi Jonas,
Apart from the EventLogExporter.cs file, We have also created a new TaskBase class in MapInfo.AddIns.Common assembly which encapsulates lots of functionality that you see in EventLogExporter.cs
We have also added TaskMessage, TaskCommand classes within the same assembly as you see in EventLogExporter.cs file. Take a look at sample below, for more information you can refer to EventLogExporter.cs file.
public class NewBGTask : TaskBase
{
public override void worker_DoWork(object sender, DoWorkEventArgs e)
{
throw new NotImplementedException();
}
protected override void worker_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{
base.worker_RunWorkerCompleted(sender, e);
}
}
------------------------------
Anshul Goel
Knowledge Community Shared Account
Shelton CT
------------------------------