Stashbox by Peter Csajtai

<PackageReference Include="Stashbox" Version="2.9.0-preview-524" />

 CompositionRootNotFoundException

using System; using System.Reflection; namespace Stashbox.Exceptions { public class CompositionRootNotFoundException : Exception { public Assembly Assembly { get; } public CompositionRootNotFoundException(Assembly assembly, Exception innerException = null) : base("No ICompositionRoot found in the given assembly: " + assembly.FullName, innerException) { Assembly = assembly; } } }