Introduction
Installation
Basic concepts
Getting Started
Entities
Actions
Events
Workflow
Error handling
Advanced usage
Examples
XWorkflows can be easily integrated into your .NET projects using NuGet, a popular package manager for .NET.
Before proceeding with the installation, ensure that you have the following prerequisites:
.NET SDK - Make sure you have the latest .NET SDK installed on your development machine.
To add XWorkflows to your project, follow these steps:
Install-Package XWorkflows
dotnet add package XWorkflows
Once the package is installed, you can verify that it was added to your project by checking the packages.config file for a reference to XWorkflows.
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="XWorkflows" version="x.y.z" targetFramework="netx.y" />
</packages>
XWorkflows is compatible with .NET Standard 2.0 and later versions, ensuring that it can be used in a wide range of .NET applications.
To update XWorkflows to the latest version, use one of the following commands:
Package Manager Console:
Update-Package XWorkflows
.NET CLI:
dotnet add package XWorkflows --version x.y.z
Make sure to replace x.y.z with the desired version number.