lvaddoninfo.json

From LabVIEW Wiki
Jump to: navigation, search

The lvaddoninfo.json file contains metadata about an add-on in the LVAddons directory.

Property Description
AddonName The name of the add-on. This is typically the abbreviation of the add-on name. For example, 'utf' for the Unit Test Framework add-on.
ApiVersion The version of the LVAddons API that the add-on is compatible with. Allowed values are 'v1'.
MinimumSupportedLVVersion The minimum version number of LabVIEW that the add-on is compatible with. This is the numerical version number. For example, '22.0'.
SupportedBitness Optional. Specifies the bitness of LabVIEW that the add-on is compatible with. Allowed values are '32' and '64'. When omitted, the add-on is compatible with both.

Example

{
    "AddonName": "utf",
    "ApiVersion": "v1",
    "MinimumSupportedLVVersion": "24.0",
    "SupportedBitness": "64"
}

See also