##// END OF EJS Templates
sync, minor changes
sync, minor changes

File last commit:

r279:8714471e8d78 v3
r284:bcb6c16f6fed v3
Show More
ContainerLifetimeElement.cs
11 lines | 290 B | text/x-csharp | CSharpLexer
using Unity.Lifetime;
namespace Implab.ServiceHost.Unity
{
public class ContainerLifetimeElement : LifetimeElement {
public override LifetimeManager GetLifetime(ContainerBuilder builder) {
return new ContainerControlledLifetimeManager();
}
}
}