System.String[] EditorReferences { get; set; }

robot_2Generated
code_blocksInput

Description

The EditorReferences property provides a list of package identifiers that this package depended on during its editing phase. This is useful for understanding the development dependencies of a package, which may differ from its runtime dependencies.

Usage

Use the EditorReferences property to retrieve the list of packages that were required during the editing of this package. This can help in setting up a similar development environment or understanding the package's development history.

Example

// Example of accessing the EditorReferences property
var package = new Package();
string[] editorDependencies = package.EditorReferences;

foreach (var dependency in editorDependencies)
{
    // Process each editor dependency
    Console.WriteLine(dependency);
}