Skip to content

Commit

Permalink
Merge pull request #9 from gtmoose32/v5
Browse files Browse the repository at this point in the history
V5
  • Loading branch information
gtmoose32 authored Aug 20, 2020
2 parents f1b806b + 7507fa2 commit 4167943
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ public interface IInitialPipelineComponentHolder<out TPipeline, TComponentBase,
/// <typeparam name="TComponent">The type to add to the pipeline component holder.</typeparam>
/// <returns>Additional pipeline component holder.</returns>
IAdditionalPipelineComponentHolder<TPipeline, TComponentBase, TPayload> WithComponent<TComponent>() where TComponent : TComponentBase;

/// <summary>
/// Adds a pipeline component to the pipeline component holder by type.
/// </summary>
/// <returns>Additional pipeline component holder.</returns>
IAdditionalPipelineComponentHolder<TPipeline, TComponentBase, TPayload> WithComponent(Type componentType);
}
}
2 changes: 1 addition & 1 deletion src/PipelineFramework.Core/PipelineFramework.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<PackageProjectUrl>https://github.com/gtmoose32/pipeline-framework</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/gtmoose32/pipeline-framework</RepositoryUrl>
<Version>5.0.0-preview2</Version>
<Version>5.0.0</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<NeutralLanguage>en</NeutralLanguage>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<Authors>Marty Mathis, Andrew Moreno</Authors>
<Owners>Marty Mathis</Owners>
<PackageTags>pipeline linear workflow component extensions microsoft dependencyinjection</PackageTags>
Expand All @@ -10,7 +10,7 @@
<RepositoryUrl>https://github.com/gtmoose32/pipeline-framework</RepositoryUrl>
<PackageId>PipelineFramework.Extensions.Microsoft.DependencyInjection</PackageId>
<Product>PipelineFramework.Extensions.Microsoft.DependencyInjection</Product>
<Version>1.0.0-preview2</Version>
<Version>1.0.0</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<NeutralLanguage>en</NeutralLanguage>
Expand Down

0 comments on commit 4167943

Please sign in to comment.