1.0.10 with readme
Some checks failed
publish-nuget / checkout-code (push) Successful in 5s
publish-nuget / build-and-publish (push) Failing after 12s

This commit is contained in:
2025-12-31 16:19:24 +03:00
parent 881c8def09
commit 1ca0ded172
2 changed files with 13 additions and 3 deletions

9
s8n-runtime/README.md Normal file
View File

@@ -0,0 +1,9 @@
### Set up this registry from the command line:
```
dotnet nuget add source --name Sharp8N --username your_username --password your_token https://code.sharp8n.com/api/packages/Sharp8N/nuget/index.json
```
### To install the package using NuGet, run the following command:
```
dotnet add package --source Sharp8N --version 1.0.10 Sharp8N.Runtime
```
For more information on the NuGet registry, see the [documentation](https://docs.gitea.com/usage/packages/nuget/).

View File

@@ -11,16 +11,17 @@
<!-- Package properties below -->
<IsPackable>true</IsPackable>
<PackageId>Sharp8N.Runtime</PackageId>
<Version>1.0.0</Version>
<Version>1.0.10</Version>
<Authors>Vitalick S</Authors>
<Company>Sharp8N</Company>
<Description>Sharp8N runtime library, that allows run s8n workflows</Description>
<RepositoryUrl>code.sharp8n.com</RepositoryUrl>
<RepositoryUrl>Sharp8N/Sharp8N.Runtime</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.0" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>