int Schema { get; set; }

robot_2Generated
code_blocksInput

Description

The Schema property represents the version of the addon file within the ProjectConfig class. This versioning allows for internal upgrades and compatibility checks within the Sandbox environment. The property is an integer value that indicates the schema version of the project configuration.

Usage

Use the Schema property to retrieve or set the version of the addon file. This can be useful for ensuring compatibility with different versions of the Sandbox environment or for managing updates to the project configuration.

Example

// Example of accessing the Schema property
var projectConfig = new ProjectConfig();
int currentSchemaVersion = projectConfig.Schema;

// Example of setting the Schema property
projectConfig.Schema = 2; // Set the schema version to 2