Skip to content
This repository has been archived by the owner on Apr 18, 2020. It is now read-only.

Releases: osoykan-archive/Autofac.Extras.IocManager

v3.2.1

16 Oct 18:34
Compare
Choose a tag to compare
  • Autofac updated to 4.6.2
  • Castle.Core updated to 4.2.1
  • Other nuget packages updated
  • Unit test assertions library moved to FluentAssertions

v3.2.0

01 Oct 13:27
Compare
Choose a tag to compare

Enhancements

  • .netstandard2.0 support
  • Castle.Core updated to 4.2.0
  • SourceLink support added

v3.1.1

14 Jul 19:08
Compare
Choose a tag to compare

Enhancements

  • Create BeforeRegistrationCompletedEvent to register services as last chance of entire registration scope. #29

v3.1.0

14 Jul 17:51
Compare
Choose a tag to compare

Enhancement

  • Create OnRegistering & OnConventionalRegistering events and they should be triggered when registrations are begin #26

v3.0.2

15 Jun 13:29
Compare
Choose a tag to compare
  • Castle Core is Upgraded 4.1.0

v3.0.0

10 Apr 22:08
Compare
Choose a tag to compare
  • .netstandard 1.6 support
  • minor refactorings
  • InjectPropertiesAsAutowired method removed
  • WithPropertyInjection(bool allowCircularDependency) method introduced

v3.0.0-preview1

09 Apr 10:36
Compare
Choose a tag to compare
v3.0.0-preview1 Pre-release
Pre-release
  • .netstandard 1.6 support

v2.2.4

06 Apr 19:45
Compare
Choose a tag to compare

v2.2.0

10 Mar 10:01
Compare
Choose a tag to compare

Enhancement

  • OnDisposing event added to IServiceRegistration interface
 _rootResolver = IocBuilder.New
                           .UseAutofacContainerBuilder()
                           .RegisterServices(r =>
                           {
                               r.Register<ISomeManager, SomeManager>();
                               r.OnDisposing += (sender, args) =>
                               {
                                   _manager = args.Context.Resolver.Resolve<ISomeManager>();
                                   _manager.Shutdown();
                               };
                           }).CreateResolver();

 _rootResolver.Dispose();

v2.1.0

03 Mar 11:01
Compare
Choose a tag to compare

Feature

  • RegisterIfAbsent<TService,TImplementation> feature abstraction added see(autofac/Autofac#469)