Files
Sharp8N.Runtime/s8n-runtime/s8n-runtime.csproj

27 lines
759 B
XML
Raw Permalink Normal View History

2025-12-24 21:26:35 +03:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<RootNamespace>s8n_runtime</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<OutputType>Library</OutputType>
2025-12-31 09:16:15 +00:00
<!-- Package properties below -->
2025-12-31 10:58:53 +00:00
<IsPackable>true</IsPackable>
2025-12-31 09:16:15 +00:00
<PackageId>Sharp8N.Runtime</PackageId>
<Version>1.0.0</Version>
<Authors>Vitalick S</Authors>
<Company>Sharp8N</Company>
<Description>Sharp8N runtime library, that allows run s8n workflows</Description>
<RepositoryUrl>code.sharp8n.com</RepositoryUrl>
2025-12-24 21:26:35 +03:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.0" />
</ItemGroup>
</Project>