Skip to main content

define extension points

The extension point definition is common regardless of the implementation method of the DLL method and the script method. See extension point definitions.

manifest.json
{
"name": "MyExtension",
"main": "MyExtension.dll", //DLL file name where the extension (IExtension implementation class) is implemented
"lifecycle": "application",

//extension point definition
"extensionPoints": {
//...
}
}

For more information about manifests, see Manifest reference.

info

The NextDesign.ExtensionPoints library simplifies the development of manifest definitions and handler implementations.