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
- Host: GitHub
- URL: https://github.com/gtmoose32/pipeline-framework-di
- Owner: gtmoose32
- License: mit
- Created: 2019-01-20T14:48:32.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-12-22T15:50:05.000Z (over 5 years ago)
- Last Synced: 2025-03-25T02:49:13.324Z (about 1 year ago)
- Topics: autofac, component, container, di, ioc, lightinject, linear, pipe, pipeline, workflow
- Language: C#
- Homepage:
- Size: 79.1 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pipeline Framework Dependency Injection

## 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.
[](https://www.nuget.org/packages/PipelineFramework.Autofac/)
```
Install-Package PipelineFramework.Autofac
```
[](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.