Files
Sharp8N.Runtime/s8n-runtime/s8n-runtime.csproj
Vitali Semianiaka 1ca0ded172
Some checks failed
publish-nuget / checkout-code (push) Successful in 5s
publish-nuget / build-and-publish (push) Failing after 12s
1.0.10 with readme
2025-12-31 16:19:24 +03:00

28 lines
800 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<RootNamespace>s8n_runtime</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<OutputType>Library</OutputType>
<!-- Package properties below -->
<IsPackable>true</IsPackable>
<PackageId>Sharp8N.Runtime</PackageId>
<Version>1.0.10</Version>
<Authors>Vitalick S</Authors>
<Company>Sharp8N</Company>
<Description>Sharp8N runtime library, that allows run s8n workflows</Description>
<RepositoryUrl>Sharp8N/Sharp8N.Runtime</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>