Bari.Plugins.Nuget.BariModule.Load C# (CSharp) Method

Load() public method

Loads the module into the kernel.
public Load ( ) : void
return void
        public override void Load()
        {
            log.Info("Nuget plugin loaded");

            Bind<IReferenceBuilder>().To<NugetReferenceBuilder>().Named("nuget");
            Bind<IProductPackager>().To<NugetProductPackager>().Named("nuget");
            Bind<IYamlProjectParametersLoader>().To<NugetPackagerParametersLoader>();
            Bind<INuGet>().To<NuGet>();
        }
BariModule