.NET Filters#
.NET filters run compiled .NET programs as filters, using the dotnet command.
Installing .NET#
Before you can run .NET filters, you will need to install .NET Runtime.
.NET Filter Definition#
The the structure of the .NET filter definition is described below. You can read how to use it in the Filter Definition section.
{
"runWith": "dotnet",
"path": "./filters/example.dll"
}
runWith- always set todotnet, marks this filter as a .NET filter.path- path to the.dllfile that contains the compiled .NET program to run.