-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.xml
25 lines (24 loc) · 1.27 KB
/
package.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="utf-8" ?>
<!--
InfoLink: Specifies a location where additional information about the package can be found.
Version: The version of the package. Must be in a semver 2.0 compatible format. This can be automatically updated from GIT.
For Version the following macro is available (Only works if the project directory is under Git source control):
$(GitVersion) - Gets the version from Git in the recommended format Major.Minor.Build-PreRelease+CommitHash.BranchName.
-->
<Package Name="LabVIEW" Version="$(GitVersion)" OS="Windows,Linux,MacOS" Architecture="AnyCPU" xmlns="http://opentap.io/schemas/package">
<Variables>
<Debug Condition="$(Debug) != true">false</Debug>
</Variables>
<Description>This plugin adds support for loading LabVIEW plugins as OpenTAP plugins.</Description>
<Owner>OpenTAP</Owner>
<Files>
<File Path="Packages/LabVIEW/OpenTap.LabView.dll" SourcePath="OpenTap.LabView.dll">
<SetAssemblyInfo Attributes="Version"/>
<Sign Certificate="Keysight Technologies, Inc."/>
<IgnoreDependency>NationalInstruments.LabVIEW.Interop</IgnoreDependency>
</File>
</Files>
<Files Condition="$(Debug) == false">
<File Path="Packages/LabVIEW/OpenTAP LabVIEW.pdf" SourcePath="OpenTAP LabVIEW.pdf" />
</Files>
</Package>