FlowForge.Core 0.1.0

dotnet add package FlowForge.Core --version 0.1.0
                    
NuGet\Install-Package FlowForge.Core -Version 0.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FlowForge.Core" Version="0.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FlowForge.Core" Version="0.1.0" />
                    
Directory.Packages.props
<PackageReference Include="FlowForge.Core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add FlowForge.Core --version 0.1.0
                    
#r "nuget: FlowForge.Core, 0.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package FlowForge.Core@0.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=FlowForge.Core&version=0.1.0
                    
Install as a Cake Addin
#tool nuget:?package=FlowForge.Core&version=0.1.0
                    
Install as a Cake Tool

FlowForge.Core

Core contracts, models, and interfaces for building FlowForge plugins.

What's included

Namespace Contents
FlowForge.Core.Interfaces INode, ITriggerNode, IExecutionContext, INodeOutputStore, ICredentialProvider
FlowForge.Core.Attributes [NodeDefinition], [NodeInput], [NodeOutput], [ConfigurationProperty], [RequiresCredential]
FlowForge.Core.Enums NodeCategory, PortType, ExecutionStatus, CredentialType
FlowForge.Core.Models Workflow, WorkflowNode, Connection, Execution, Credential
FlowForge.Core.Exceptions FlowForgeException and domain-specific exception types

Quick start

dotnet new classlib -n FlowForge.Plugin.MyPlugin
cd FlowForge.Plugin.MyPlugin
dotnet add package FlowForge.Core

Creating a node

using FlowForge.Core.Attributes;
using FlowForge.Core.Enums;
using FlowForge.Core.Interfaces;

[NodeDefinition(Name = "My Action", Description = "Does something useful", Icon = "fa-bolt")]
[NodeInput("input", Type = PortType.Object, IsRequired = true)]
[NodeOutput("output", Type = PortType.Object)]
[ConfigurationProperty("url", "string", Description = "Target URL", IsRequired = true)]
public class MyActionNode : INode
{
    public string Id { get; set; } = string.Empty;
    public string Type => "my-action";
    public NodeCategory Category => NodeCategory.Action;

    public async Task<NodeOutput> ExecuteAsync(NodeInput input, IExecutionContext context)
    {
        // Your logic here
        return new NodeOutput { Data = input.Data, Success = true };
    }
}

Plugin project setup

Your .csproj should enable dynamic loading and exclude the Core runtime (the host provides it):

<PropertyGroup>
  <EnableDynamicLoading>true</EnableDynamicLoading>
  <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>

<ItemGroup>
  <PackageReference Include="FlowForge.Core">
    <Private>false</Private>
    <ExcludeAssets>runtime</ExcludeAssets>
  </PackageReference>
</ItemGroup>

License

MIT

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on FlowForge.Core:

Package Downloads
FlowForge.Plugin.AdvancedHttp

Advanced HTTP client plugin for FlowForge with retry, polling, and batch request capabilities.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.0 120 4/27/2026 0.1.0 is deprecated because it is no longer maintained.