I build a windows service and I am getting the Error 1053 and not sure why. This is what my onstart looks like :
protected override void OnStart(string[] args)
{
var workerThread = new Thread(Worker);
workerThread.Start();
}
I spawned off a new thread as I should but I am still getting no joy.