BaseWorker.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using NodeStarterTools.SolutionPaths;
namespace NodeStarterTools.BuildWorker
{
public abstract class BaseWorker
{
protected readonly Config Config;
public BaseWorker(Config Config)
{
this.Config = Config;
}
public abstract void Work();
}
}