##// END OF EJS Templates
fixed typo
fixed typo

File last commit:

r295:28af686e24f7 default
r297:00a2d52813ee v3.0.16 default
Show More
SingletonLifetimeElement.cs
8 lines | 270 B | text/x-csharp | CSharpLexer
/ Implab.ServiceHost / src / Unity / SingletonLifetimeElement.cs
cin
Added tests for Implab.ServiceHost.Unity configuration loader.
r289 using Unity.Lifetime;
cin
Fixed promise rejection when there is not specified error handler in the reaction....
r295 namespace Implab.ServiceHost.Unity {
cin
Added tests for Implab.ServiceHost.Unity configuration loader.
r289 public class SingletonLifetimeElement : LifetimeElement {
public override LifetimeManager GetLifetime(ContainerBuilder builder) {
return new SingletonLifetimeManager();
}
}
}