1
I Use This!
Very Low Activity

Commits : Listings

Analyzed about 18 hours ago. based on code collected 1 day ago.
May 19, 2023 — May 19, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
NuGet package templates still contained an .xml file that should have been removed. More... about 12 years ago
SimpleInjectorMVC3Extensions class removed from the Code Samples project, because there is now a SimpleInjector.Integration.Web.Mvc project that contains this code. More... about 12 years ago
Update of build.bat for bug in the Extensions.LifetimeScoping.dll. More... about 12 years ago
Bug fix: [Extensions.LifetimeScoping] It was impossible to register instances (with a different lifestyle than Lifetime Scope) for disposal, when no services where registered with the Lifetime Scope lifestyle. To fix this an EnableLifetimeScoping extension method has been added and an InvalidOperationException is thrown, when EnableLifetimeScoping is not called explicitly. More... about 12 years ago
Fixes to FxCop files. More... about 12 years ago
Changes made to SimpleInjector.MVC NuGet package template. More... about 12 years ago
The SimpleInjectorLifetimeScopeExtensions class in the CodeSamples project was changed to mimic the behavior of the new Extensions.LifetimeScoping project, but without support for multiple containers (which is .NET 4.0 specific). The code is still available for .NET 3.5 projects. More... about 12 years ago
Unused constant removed. More... about 12 years ago
chm file removed from solution. More... about 12 years ago
Changes to enable automatic build process. More... about 12 years ago
BuildTools folder added to solution, which contains tools for the automated build process that will run when a new version gets released. More... about 12 years ago
Integration project for MVC3 with Lifetime scoping removed, since it is a bad idea to have a lifetime scope on the boundaries of a web request, since a lifetime scope is thread-specific, while a single web request can be executed on multiple threads. More... about 12 years ago
Removed the RegisterMvcDependencyResolver extension method from the SimpleInjectorMvcExtensions method. The method name wasn't that intuitive and didn't really add any value. More... about 12 years ago
[Extensions.Web] Added a new RegisterForDisposal method that allows registering types for disposal when the web request ends. More... about 12 years ago
[Extensions.LifetimeScoping] GetCurrentLifetimeScope extension method added to return the current LifetimeScope. The LifetimeScope.RegisterForDisposal method has been made public. These two methods together allow users to register instances with another lifetime than Lifetime Scope to be disposed when the scope ends. More... about 12 years ago
Fake strong name key added to solution folder. This way others can build the solution, without me having to publish the real strong name key. More... about 12 years ago
New Extensions.LifetimeScoping project and supporting unit test project added. More... about 12 years ago
Project dependency from SimpleInjector.Integration.Web.Mvc to SimpleInjector.Integration.Web removed. More... about 12 years ago
StyleCop and FxCop warnings fixed for the new Integration projects. More... about 12 years ago
Projects for Integrating Simple Injector with Web technology (Web Forms and MVC) added. More... about 12 years ago
Typo in XML docs fixed. More... about 12 years ago
Missing tests added for RegisterDecorator. More... about 12 years ago
Information added to the exception message of the exception thrown by the RegisterManyForOpenGeneric method, that occurs when multiple implementations of the same closed generic type are found. The information tells how the problem can be solved. More... about 12 years ago
RegisterManyForOpenGeneric extension method of the Extensions project threw an exception which message contained the .NET type instead of the 'friendly' type name, as the rest of the Simple Injector uses. More... about 12 years ago
DebuggerDisplay for InstanceProducers did not work when running the VB debugger. More... about 12 years ago
Support added for decorating collections. This is done automatically when a decorator is registered. More... about 12 years ago
The just added overload removed again, since this scews C# overload resolution. More... about 12 years ago
New NonGenericRegistrationExtensions.RegisterAll overload added to the Extensions library. This overload takes a params Type[] and calls into the IEnumerable<Type> overload. More... about 12 years ago
Small refactoring to LifetimeScopeExtensions in Code Samples project. More... about 12 years ago
New DecoratorExtensions class added to the Extensions project. This class replaces GenericDecoratorExtensions (which is now obsolete) and allows registering both generic and non-generic decorators. More... about 12 years ago