20 lines
743 B
XML
20 lines
743 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<LangVersion>latest</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<Version>0.2.0</Version>
|
|
<Description>Node pipeline engine abstractions.
|
|
Contains pipeline node factory and validator classes and interfaces
|
|
</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\NodePipeline.Abstractions\NodePipeline.Abstractions.csproj"/>
|
|
<ProjectReference Include="..\NodePipeline.Configuration.Abstractions\NodePipeline.Configuration.Abstractions.csproj"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|