Hello,
I'm porting a project that references certain ActiproSoftware Syntax Editor assemblies to .NET Core. To be more specific, this project is supposed to target .NET Standard 2.0 so that it can run both on full framework and .NET Core 2.0. The UI part of the app will remain WinForms (and thus only runs on the full framework), but this particular project is part of some business logic that also should run on .NET Core. So, the project doesn't instantiate any controls or so, but for example it extends the DynamicOutliningSyntaxLanguage class to define its own language.
So here's my question. Does Actipro SyntaxEditor offer any support for .NET Core or .NET Standard for the non-UI components?