EAVFW.Extensions.WorkflowEngine
5.0.0
dotnet add package EAVFW.Extensions.WorkflowEngine --version 5.0.0
NuGet\Install-Package EAVFW.Extensions.WorkflowEngine -Version 5.0.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="EAVFW.Extensions.WorkflowEngine" Version="5.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EAVFW.Extensions.WorkflowEngine" Version="5.0.0" />
<PackageReference Include="EAVFW.Extensions.WorkflowEngine" />
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 EAVFW.Extensions.WorkflowEngine --version 5.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: EAVFW.Extensions.WorkflowEngine, 5.0.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.
#addin nuget:?package=EAVFW.Extensions.WorkflowEngine&version=5.0.0
#tool nuget:?package=EAVFW.Extensions.WorkflowEngine&version=5.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
EAVFW.Extensions.WorkflowEngine
dotnet tool run eavfw-manifest install EAVFW.Extensions.WorkflowEngine
A Run workflow ribbon button
import { RegistereRibbonButton, useAppInfo, useModelDrivenApp, useRibbon } from "@eavfw/apps";
RegistereRibbonButton("RUN_REMOTE_WORKFLOW", ({ key, ...props }) => {
const { registerButton, events } = useRibbon();
const { currentEntityName, currentRecordId } = useAppInfo();
const app = useModelDrivenApp();
registerButton({
key: key,
text: props.text ?? "Run Workflow",
iconProps: props.iconProps ?? { iconName: 'Send' },
title: props.title ?? props.text ?? "Run Workflow",
disabled: false,
onClick: () => {
//@ts-ignore
let rsp = fetch(`${process.env.NEXT_PUBLIC_API_BASE_URL}/entities/${app.getEntity(currentEntityName).collectionSchemaName}/records/${currentRecordId}/workflows/${props.workflowName}/runs`, {
method: "POST",
body: JSON.stringify({}),
credentials: "include"
});
}
//workflow: props.workflow
// onClick: onClick
});
});
Changelog
(12/6/2022) - Bug on forloop payload fixed
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Delegate.WorkflowEngine.Hangfire (>= 4.0.0)
- EAVFramework (>= 5.0.0-dev.7)
- EAVFW.Extensions.Configuration (>= 3.0.0)
- EAVFW.Extensions.Documents (>= 4.0.0)
- Hangfire.AspNetCore (>= 1.8.15)
- Hangfire.SqlServer (>= 1.8.15)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 9.0.0)
-
net9.0
- Delegate.WorkflowEngine.Hangfire (>= 4.0.0)
- EAVFramework (>= 5.0.0-dev.7)
- EAVFW.Extensions.Configuration (>= 3.0.0)
- EAVFW.Extensions.Documents (>= 4.0.0)
- Hangfire.AspNetCore (>= 1.8.15)
- Hangfire.SqlServer (>= 1.8.15)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 9.0.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on EAVFW.Extensions.WorkflowEngine:
Package | Downloads |
---|---|
EAVFW.Extensions.DynamicManifest
Dynamic Manifest Support for runtime models |
|
EAVFW.Extensions.Docs.Extractor
Package Description |
|
EAVFW.Extensions.DigitalSigning
Digital Signing Package for EAVFW Busines Application Framework |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
5.0.0 | 120 | 4 months ago |
4.0.2 | 81 | 4 months ago |
4.0.1 | 142 | 4 months ago |
4.0.0 | 272 | 5 months ago |
3.2.10 | 163 | 5 months ago |
3.2.9 | 257 | 6 months ago |
3.2.8 | 389 | 7 months ago |
3.2.7 | 232 | 8 months ago |
3.2.6 | 176 | 8 months ago |
3.2.5 | 112 | 8 months ago |
3.2.4 | 236 | 8 months ago |
3.2.3 | 115 | 8 months ago |
3.2.2 | 569 | 8 months ago |
3.2.1 | 256 | 10 months ago |
3.2.0 | 120 | 10 months ago |
3.1.8 | 173 | 6/5/2024 |
3.1.7 | 655 | 4/25/2024 |
3.1.6 | 525 | 11/30/2023 |
3.1.5 | 165 | 11/27/2023 |
3.1.4 | 579 | 10/29/2023 |
3.1.3 | 131 | 10/29/2023 |
3.1.2 | 143 | 10/25/2023 |
3.1.1 | 174 | 10/24/2023 |
3.1.0 | 151 | 10/18/2023 |
3.0.2 | 156 | 9/29/2023 |
3.0.1 | 233 | 2/1/2023 |
3.0.1-dev.1 | 241 | 12/6/2022 |
3.0.0 | 154 | 11/21/2022 |
3.0.0-dev.5 | 121 | 12/6/2022 |
3.0.0-dev.4 | 123 | 11/21/2022 |
3.0.0-dev.3 | 246 | 11/17/2022 |
2.0.2-dev.3 | 157 | 11/15/2022 |
2.0.2-dev.2 | 131 | 11/9/2022 |
2.0.2-dev.1 | 145 | 11/9/2022 |
2.0.1 | 189 | 10/9/2022 |
2.0.0 | 427 | 10/5/2022 |
1.1.13 | 166 | 9/11/2022 |
1.1.12 | 149 | 9/11/2022 |
1.1.11 | 151 | 9/11/2022 |
1.1.10 | 156 | 8/29/2022 |
1.1.9 | 191 | 8/10/2022 |
1.1.8 | 167 | 8/8/2022 |
1.1.7 | 167 | 8/8/2022 |
1.1.6 | 160 | 8/8/2022 |
1.1.5 | 166 | 8/4/2022 |
1.1.4 | 164 | 8/4/2022 |
1.1.3 | 183 | 8/4/2022 |
1.1.2 | 170 | 8/3/2022 |
1.1.1 | 166 | 8/3/2022 |
1.1.0 | 156 | 8/3/2022 |
1.0.9 | 175 | 8/3/2022 |
1.0.8 | 163 | 7/30/2022 |
1.0.7 | 156 | 7/30/2022 |
1.0.6 | 154 | 7/30/2022 |
1.0.5 | 163 | 7/30/2022 |
1.0.4 | 155 | 7/30/2022 |
1.0.3 | 165 | 7/30/2022 |
1.0.2 | 171 | 7/30/2022 |
1.0.1 | 161 | 7/29/2022 |