##// END OF EJS Templates
Added test for TraceRegistry
Added test for TraceRegistry

File last commit:

r279:8714471e8d78 v3
r287:78da52bb28f0 v3
Show More
SingletonLifetimeElement.cs
9 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();
}
}
}