updated autofac to 3.0

This commit is contained in:
Keivan Beigi 2013-01-30 13:13:19 -08:00 committed by kay.one
commit 8a5a326480
25 changed files with 91 additions and 66 deletions

View file

@ -109,14 +109,11 @@ namespace NzbDrone.Common
{
var config = new ExceptronConfiguration
{
ApiKey = "CB230C312E5C4FF38B4FB9644B05E60G",
ThrowExceptions = !EnvironmentProvider.IsProduction,
ApiKey = "CB230C312E5C4FF38B4FB9644B05E60G",
ThrowExceptions = !EnvironmentProvider.IsProduction,
};
ExceptronClient = new ExceptronClient(config)
{
ApplicationVersion = new EnvironmentProvider().Version.ToString()
};
ExceptronClient = new ExceptronClient(config, new EnvironmentProvider().Version);
}
private static void VerifyDependencies()