removed Autofac from update project.

This commit is contained in:
Keivan Beigi 2013-04-19 17:05:48 -07:00
commit 3f958109bb
18 changed files with 174 additions and 151 deletions

View file

@ -0,0 +1,19 @@
using NzbDrone.Common;
using TinyIoC;
namespace NzbDrone.Update
{
public class UpdateContainerBuilder : ContainerBuilderBase
{
public UpdateContainerBuilder()
: base("NzbDrone.Update", "NzbDrone.Common")
{
}
public static TinyIoCContainer Build()
{
return new UpdateContainerBuilder().Container;
}
}
}