chr
2026-04-05 fe750b791d5b517cc4e9bc8e99a9a75139a0cfba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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. This can be automatically updated from GIT.
Configuration: Can be any kind of information, such as bit version or git branch name. 
 
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="Plugin Development" 
         xmlns="http://opentap.io/schemas/package"
         InfoLink="http://www.keysight.com/" 
         Version="0.1.0-alpha">
  <Description>Example source code for developers using OpenTAP</Description>
  <Files>
    <File Path="Packages/Plugin Development/OpenTap.Plugins.PluginDevelopment.dll">
        <SetAssemblyInfo Attributes="Version"/>
    </File>
  </Files>
</Package>