##// END OF EJS Templates
Unity xml configuration, alpha2
Unity xml configuration, alpha2

File last commit:

r274:22629bf26121 v3
r274:22629bf26121 v3
Show More
SimgletonLifetimeElement.cs
9 lines | 273 B | text/x-csharp | CSharpLexer
using Unity.Lifetime;
namespace Implab.ServiceHost.Unity
{
public class SimgletonLifetimeElement : LifetimeElement {
public override LifetimeManager GetLifetimeManager(ContainerBuilder ctx) {
return new SingletonLifetimeManager();
}
}
}