So, I don't know what I don't know.
I've downloaded the source code, stumbled through installing VS 2010/SQL Server 2008/SQL Server R2/SSMS/and who knows what else over three days (three working days).
I got the entire solution to build and when I run it in the debugger,
Item has already been added. Key in dictionary: 'host' Key being added: 'host'
in the code
public void StartRun() {
DateTime nextRun = DateTime.Now;
while (!Stop) {
try {
if (nextRun <= DateTime.Now) {
nextRun = DateTime.Now.AddMinutes(interval);
Run();
}
Thread.Sleep(1000);
} catch (Exception e) {
bool rethrow = ExceptionPolicy.HandleException(e, "Unhandled Policy");
if (rethrow)
throw;
}
}
}
Help!!!!
|