<PackageReference Include="Castle.Windsor" Version="3.1.0-RC" />

ISubSystem

public interface ISubSystem
A subsystem is used by the MicroKernel to deal with a specific concern.
namespace Castle.MicroKernel { public interface ISubSystem { void Init(IKernelInternal kernel); void Terminate(); } }