<PackageReference Include="Castle.Windsor" Version="5.1.0" />

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(); } }