Unity.Container implementation.
Перейти к файлу
Eugene Sadovoi b6f43256bf Refactoring 2018-12-27 12:38:26 -05:00
.github/ISSUE_TEMPLATE Updated template 2018-09-01 10:41:39 -04:00
src Refactoring 2018-12-27 12:38:26 -05:00
tests Refactoring 2018-12-27 12:38:26 -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 Fixed reference 2018-12-14 12:06:37 -05:00
appveyor.yml Enabling build 2018-08-26 19:31:29 -04:00
codecov.yml Update codecov.yml 2018-02-23 10:35:08 -05:00
package.props Updated PropertyMembers to new format 2018-12-15 21:48:37 -05:00
package.sln Fixing build 2018-08-26 19:29:27 -04: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