Jump to content

Lvaddoninfo.json: Difference between revisions

From LabVIEW Wiki
Created page with "{{DISPLAYTITLE:lvaddoninfo.json}} The '''lvaddoninfo.json''' file contains metadata about an add-on in the LVAddons directory. {| class="wikitable" !Property !Description..."
 
(No difference)

Latest revision as of 17:44, 22 August 2024

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