Tutorial – Write C# actions in Ryax
Ryax now supports actions written in **C# (Csharp) with DotNet 6**. To create a C# action just create a Dotnet project and go inside with: dotnet new console -o App -n MyAction cd App Then add your dependencies, for example: dotnet add package Newtonsoft.Json Now edit the Program.cs file to add your code. Here is …