mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
a4a58c59f1
fixed update app issue.
36 lines
1021 B
C#
36 lines
1021 B
C#
using System.Reflection;
|
|
using NLog;
|
|
using NzbDrone.Common.Composition;
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
using NzbDrone.Common.Instrumentation;
|
|
using NzbDrone.Common.Security;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Host
|
|
{
|
|
public static class Bootstrap
|
|
{
|
|
public static IContainer Start(StartupArguments args, IUserAlert userAlert)
|
|
{
|
|
var logger = LogManager.GetLogger("AppMain");
|
|
|
|
GlobalExceptionHandlers.Register();
|
|
IgnoreCertErrorPolicy.Register();
|
|
|
|
logger.Info("Starting NzbDrone Console. Version {0}", Assembly.GetExecutingAssembly().GetName().Version);
|
|
|
|
|
|
if (!PlatformValidation.IsValidate(userAlert))
|
|
{
|
|
throw new TerminateApplicationException();
|
|
}
|
|
|
|
var container = MainAppContainerBuilder.BuildContainer(args);
|
|
|
|
DbFactory.RegisterDatabase(container);
|
|
container.Resolve<Router>().Route();
|
|
|
|
return container;
|
|
}
|
|
}
|
|
} |