I've installed Wexflow, version dot NET Core. I want to create my own task. Project is in .NET Core. I added Wexflow library using this command:
dotnet add package Wexflow
Library has been added to depenedencies, but there is same bug. It looks like below:
My WexflowSampleTask is in NET Core 2.2. But there is compatibility issue I think.
I code I can't add Wexflow namespace. When I type use Wexflow, I get error that namespace doesn't exist.
using System;
using Wexflow.Core;
namespace WexflowSampleTask
{
public class MyTaskNetCore : Task
{
}
}
Type or namespace Wexflow couldn't be found.