An open API service indexing awesome lists of open source software.

https://github.com/gtmoose32/pipeline-framework-di

Pipeline Framework Dependency Injection allows you to easily construct and execute linear workflows using some popular dependency injection (IOC) containers
https://github.com/gtmoose32/pipeline-framework-di

autofac component container di ioc lightinject linear pipe pipeline workflow

Last synced: about 1 year ago
JSON representation

Pipeline Framework Dependency Injection allows you to easily construct and execute linear workflows using some popular dependency injection (IOC) containers

Awesome Lists containing this project

README

          

# Pipeline Framework Dependency Injection
![Build Status](https://dev.azure.com/gtmoose/Mathis%20Home/_apis/build/status/Pipeline%20Framework/pipeline-framework-di?branchName=master)

## What is it?

Pipeline Framework Dependency Injection is a set of libraries which extends the [Pipeline Framework](https://github.com/gtmoose32/pipeline-framework) to utilize some popular dependency injection (IOC) containers.

Examples in the [wiki](https://github.com/gtmoose32/pipeline-framwork-di/wiki).

## Installing Pipeline Framework Dependency Injection packages
Install any of the libraries using nuget.

[![nuget](https://img.shields.io/nuget/v/PipelineFramework.Autofac.svg)](https://www.nuget.org/packages/PipelineFramework.Autofac/)

```
Install-Package PipelineFramework.Autofac
```

[![nuget](https://img.shields.io/nuget/v/PipelineFramework.LightInject.svg)](https://www.nuget.org/packages/PipelineFramework.LightInject/)

```
Install-Package PipelineFramework.LightInject
```

or via the .NET Core command line interface:

```
dotnet add package PipelineFramework.Autofact

dotnet add package PipelineFramework.LightInject
```

Either commands, from Package Manager Console or .NET Core CLI, will download and install PipelineFramework.Core and all required dependencies.