Unity.Container implementation.
Перейти к файлу
Eugene Sadovoi 99b73c6920
Update codecov.yml
2018-02-23 10:35:08 -05:00
src Fixed unitycontainer/unity#201 2018-02-23 10:28:14 -05:00
tests LifetimeContainer 2018-02-21 13:12:56 -05:00
.gitignore Releasing v5.6.0 2018-02-21 13:06:09 -05:00
LICENSE Added LICENSE and README.md 2017-10-01 13:56:27 -04:00
README.md Update README.md 2017-10-18 20:56:42 -04:00
appveyor.yml Releasing v5.6.0 2018-02-21 13:06:09 -05:00
codecov.yml Update codecov.yml 2018-02-23 10:35:08 -05:00
package.props Releasing v5.6.1 2018-02-22 13:37:47 -05:00
package.sln Releasing v5.6.0 2018-02-21 13:06:09 -05:00

README.md

Build status codecov License NuGet NuGet

Overview

The Unity Container (Unity) is a lightweight, extensible dependency injection container. It facilitates building loosely coupled applications and provides developers with the following advantages:

  • Simplified object creation, especially for hierarchical object structures and dependencies
  • Abstraction of requirements; this allows developers to specify dependencies at run time or in configuration and simplify management of crosscutting concerns
  • Increased flexibility by deferring component configuration to the container
  • Service location capability; this allows clients to store or cache the container
  • Instance and type interception
  • Registration by convention