##// END OF EJS Templates
changed urls in Implab.csproj
changed urls in Implab.csproj

File last commit:

r295:28af686e24f7 default
r296:58f49e47605b default
Show More
SingletonLifetimeElement.cs
8 lines | 270 B | text/x-csharp | CSharpLexer
using Unity.Lifetime;
namespace Implab.ServiceHost.Unity {
public class SingletonLifetimeElement : LifetimeElement {
public override LifetimeManager GetLifetime(ContainerBuilder builder) {
return new SingletonLifetimeManager();
}
}
}