A2v10.Module.Workflow
10.1.1032
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package A2v10.Module.Workflow --version 10.1.1032
NuGet\Install-Package A2v10.Module.Workflow -Version 10.1.1032
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="A2v10.Module.Workflow" Version="10.1.1032" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="A2v10.Module.Workflow" Version="10.1.1032" />
<PackageReference Include="A2v10.Module.Workflow" />
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 A2v10.Module.Workflow --version 10.1.1032
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: A2v10.Module.Workflow, 10.1.1032"
#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=A2v10.Module.Workflow&version=10.1.1032
#tool nuget:?package=A2v10.Module.Workflow&version=10.1.1032
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
A2v10.Module.Workflow
Workflow UI module for A2v10 application
How to use
- Install workflow modules (WebApp):
<ItemGroup>
<PackageReference Include="A2v10.Workflow.WebAssets" Version="10.1.8112" />
<PackageReference Include="A2v10.Workflow.Engine" Version="10.1.8221" />
<PackageReference Include="A2v10.Scheduling" Version="10.1.8547" />
</ItemGroup>
- Add the Workflow engine to the service collection and register the engine target. Add Scheduler to the service collection and register the Workflow Pending job handler.
services.AddWorkflowEngineScoped()
.AddInvokeTargets(a =>
{
a.RegisterEngine<WorkflowInvokeTarget>("Workflow", InvokeScope.Scoped);
});
services.UseScheduling(Configuration, factory =>
{
factory.RegisterJobHandler<WorkflowPendingJobHandler>("WorkflowPending");
});
- Add the Scheduler configuration to the appsettings.json
"Scheduler": {
"Jobs": [
{
"Id": "WorkflowPending",
"Handler": "WorkflowPending",
"Cron": "0 * * ? * *" /* every minute */
}
]
}
- Connect scripts in MainApp/_layout/scripts.html:
<script type="text/javascript" src="/scripts/bpmnfull.min.js?v=1.1.8112"></script>
Check the version of bpmnfull.min.js in your project. It should be the same as the package version.
- Connect stylesheet in MainApp/_layout/styles.html:
<link rel="stylesheet" href="/css/bpmnfull.min.css?v=1.1.8112">
Check the version of bpmnfull.min.css in your project. It should be the same as the package version.
- Run the WebApp/_assets/sql/a2v10_workflow.sql script to create workflow tables, views, stored procedures, etc.
- Run the WebApp/_assets/sql/a2v10_workflow_module.sql script to create workflow UI assets.
Feedback
A2v10.Module.Workflow is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.
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 was computed. 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. net10.0 was computed. 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.
-
net8.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|---|---|
10.1.1045 | 107 | 7/2/2025 |
10.1.1044 | 136 | 6/26/2025 |
10.1.1043 | 159 | 6/19/2025 |
10.1.1042 | 124 | 6/14/2025 |
10.1.1041 | 254 | 6/13/2025 |
10.1.1040 | 276 | 6/12/2025 |
10.1.1039 | 138 | 6/4/2025 |
10.1.1038 | 70 | 5/31/2025 |
10.1.1037 | 108 | 5/30/2025 |
10.1.1036 | 126 | 5/30/2025 |
10.1.1035 | 134 | 5/29/2025 |
10.1.1033 | 147 | 5/20/2025 |
10.1.1032 | 134 | 5/19/2025 |
10.1.1031 | 174 | 5/16/2025 |
10.1.1030 | 189 | 5/16/2025 |