├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── appveyor.yml ├── package.props ├── package.sln ├── src ├── Configuration.cs ├── Extensions │ ├── HostingExtension.cs │ └── MDIExtension.cs ├── Lifetime │ ├── InjectionSingletonLifetimeManager.cs │ ├── InjectionTransientLifetimeManager.cs │ └── ServiceProviderLifetimeManager.cs ├── ServiceProvider │ ├── ServiceProvider.cs │ ├── ServiceProviderExtensions.cs │ └── ServiceProviderFactory.cs ├── Unity.Microsoft.DependencyInjection.csproj └── package.snk └── tests ├── ScopedDepencencyTests.cs ├── Unity.Microsoft.DependencyInjection.Tests.csproj └── UnityDependencyInjectionTests.cs /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [ENikS] 2 | open_collective: unity-container 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-dependency-injection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-dependency-injection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-dependency-injection/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-dependency-injection/HEAD/appveyor.yml -------------------------------------------------------------------------------- /package.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-dependency-injection/HEAD/package.props -------------------------------------------------------------------------------- /package.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-dependency-injection/HEAD/package.sln -------------------------------------------------------------------------------- /src/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-dependency-injection/HEAD/src/Configuration.cs -------------------------------------------------------------------------------- /src/Extensions/HostingExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-dependency-injection/HEAD/src/Extensions/HostingExtension.cs -------------------------------------------------------------------------------- /src/Extensions/MDIExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-dependency-injection/HEAD/src/Extensions/MDIExtension.cs -------------------------------------------------------------------------------- /src/Lifetime/InjectionSingletonLifetimeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-dependency-injection/HEAD/src/Lifetime/InjectionSingletonLifetimeManager.cs -------------------------------------------------------------------------------- /src/Lifetime/InjectionTransientLifetimeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-dependency-injection/HEAD/src/Lifetime/InjectionTransientLifetimeManager.cs -------------------------------------------------------------------------------- /src/Lifetime/ServiceProviderLifetimeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-dependency-injection/HEAD/src/Lifetime/ServiceProviderLifetimeManager.cs -------------------------------------------------------------------------------- /src/ServiceProvider/ServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-dependency-injection/HEAD/src/ServiceProvider/ServiceProvider.cs -------------------------------------------------------------------------------- /src/ServiceProvider/ServiceProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-dependency-injection/HEAD/src/ServiceProvider/ServiceProviderExtensions.cs -------------------------------------------------------------------------------- /src/ServiceProvider/ServiceProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-dependency-injection/HEAD/src/ServiceProvider/ServiceProviderFactory.cs -------------------------------------------------------------------------------- /src/Unity.Microsoft.DependencyInjection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-dependency-injection/HEAD/src/Unity.Microsoft.DependencyInjection.csproj -------------------------------------------------------------------------------- /src/package.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-dependency-injection/HEAD/src/package.snk -------------------------------------------------------------------------------- /tests/ScopedDepencencyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-dependency-injection/HEAD/tests/ScopedDepencencyTests.cs -------------------------------------------------------------------------------- /tests/Unity.Microsoft.DependencyInjection.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-dependency-injection/HEAD/tests/Unity.Microsoft.DependencyInjection.Tests.csproj -------------------------------------------------------------------------------- /tests/UnityDependencyInjectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unitycontainer/microsoft-dependency-injection/HEAD/tests/UnityDependencyInjectionTests.cs --------------------------------------------------------------------------------