Skip to main content

Defining Extension Points

The definition of extension points is common regardless of whether you use the DLL or script implementation method. Please refer to Defining Extension Points.

Please specify the script file name that will serve as the entry point in main as shown below.

manifest.json
{
/Extension definition
"name": "HelloWorld",
"main": "main.cs", //C# script file name that will be the entry point
"lifecycle": "application",

/Extension point definition
//...
}