Skip to main content

define manifest file

Overview

The manifest file is very simple as we create the extension points in code.

Implementation example

When using the project template, the initial settings are as follows.

manifest.json
{
"name": "SampleExtension", //Must be unique across all extensions.
"main": "SampleExtension.dll", //should be the same as your project's assembly file name.
"lifecycle": "application"
}