2013-07-19 05:47:55 +02:00
|
|
|
|
using NzbDrone.Common.Composition;
|
2013-08-16 05:32:23 +02:00
|
|
|
|
using NzbDrone.Common.EnvironmentInfo;
|
2013-04-20 02:05:48 +02:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Update
|
|
|
|
|
{
|
|
|
|
|
public class UpdateContainerBuilder : ContainerBuilderBase
|
|
|
|
|
{
|
2013-08-16 05:32:23 +02:00
|
|
|
|
private UpdateContainerBuilder(IStartupArguments startupArguments)
|
|
|
|
|
: base(startupArguments, "NzbDrone.Update", "NzbDrone.Common")
|
2013-04-20 02:05:48 +02:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-16 05:32:23 +02:00
|
|
|
|
public static IContainer Build(IStartupArguments startupArguments)
|
2013-04-20 02:05:48 +02:00
|
|
|
|
{
|
2013-08-16 05:32:23 +02:00
|
|
|
|
return new UpdateContainerBuilder(startupArguments).Container;
|
2013-04-20 02:05:48 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|