an ASP.NET Open Source CMS & eCommerce platform
Search:
Last Post 11/16/2012 9:14:04 PM By cestes001. 0 replies.
11/16/2012 9:14:04 PM
cestes001
Posts: 2
Joined: 11/15/2012
Overwhelmed
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!!!!