Stashbox by Peter Csajtai

<PackageReference Include="Stashbox" Version="3.4.0-preview-602" />

 TransientLifetime

Represents a transient lifetime.
using Stashbox.Registration; using Stashbox.Resolution; using System; using System.Linq.Expressions; namespace Stashbox.Lifetime { public class TransientLifetime : ExpressionLifetimeDescriptor { protected override Expression ApplyLifetime(Expression expression, ServiceRegistration serviceRegistration, ResolutionContext resolutionContext, Type resolveType) { return expression; } } }