Revert "updated autofac to 3.0"

This reverts commit 4f6e928b4e650750c38f8bab8dbd36146c00933f.
This commit is contained in:
Keivan Beigi 2013-01-30 17:08:07 -08:00 committed by kay.one
commit 86e554010d
25 changed files with 64 additions and 89 deletions

View file

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