24 lines
771 B
XML
24 lines
771 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>
|
|
<Title>NodePipeline.Abstractions</Title>
|
|
<Authors>THE_KONDRAT</Authors>
|
|
<Description>Node pipeline abstractions
|
|
|
|
Contains all types used for node creation
|
|
</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\NodePipeline.Constants\**\*.cs"
|
|
Exclude="..\NodePipeline.Constants\obj\**\*.cs"
|
|
Link="Constants\%(RecursiveDir)%(Filename)%(Extension)"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|