Files
Sharp8N.Runtime/s8n-runtime/s8n-runtime.csproj
VitalickS ecec7dca3e
Some checks failed
publish-nuget / checkout-code (push) Successful in 5s
publish-nuget / build-and-publish (push) Failing after 15s
Update s8n-runtime/s8n-runtime.csproj
2025-12-31 10:58:53 +00:00

27 lines
759 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.0</Version>
<Authors>Vitalick S</Authors>
<Company>Sharp8N</Company>
<Description>Sharp8N runtime library, that allows run s8n workflows</Description>
<RepositoryUrl>code.sharp8n.com</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.0" />
</ItemGroup>
</Project>