##// END OF EJS Templates
Container configuration cleanup, RC2
Container configuration cleanup, RC2

File last commit:

r279:8714471e8d78 v3
r279:8714471e8d78 v3
Show More
ContextLifetimeElement.cs
9 lines | 269 B | text/x-csharp | CSharpLexer
using Unity.Lifetime;
namespace Implab.ServiceHost.Unity
{
public class ContextLifetimeElement : LifetimeElement {
public override LifetimeManager GetLifetime(ContainerBuilder builder) {
return new PerResolveLifetimeManager();
}
}
}