-
Notifications
You must be signed in to change notification settings - Fork 0
/
TwRobotstudioSyncTarget.rsaddin
32 lines (25 loc) · 1.42 KB
/
TwRobotstudioSyncTarget.rsaddin
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
26
27
28
29
30
31
32
<?xml version="1.0" encoding="utf-8" ?>
<RobotStudioAddIn xmlns="urn:abb-robotics-robotstudio-addin"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:abb-robotics-robotstudio-addin file:///C:\Program%20Files%20(x86)\ABB\SDK\RobotStudio%202022%20SDK\RobotStudioAddin.xsd"
autoLoad="false">
<!-- Make sure that ApplicationId is unique -->
<ApplicationId>com.TomiWesterholm.TwRobotstudioSyncTarget</ApplicationId>
<DisplayVersion>0.1.0.0</DisplayVersion>
<Description>Adds contextbutton to sync target's without a path.</Description>
<AddInType>General</AddInType>
<Assembly>
<!-- The name of the dll that contains the add-in entry point -->
<FileName>TwRobotstudioSyncTarget.dll</FileName>
<!-- Specify the full name of the entry method if it is not the standard AddinMain() -->
<!-- <Entrypoint></Entrypoint> -->
<!-- Specify the location of the add-in assembly if it is not in the same directory as the .rsaddin file -->
<!-- <Path></Path> -->
</Assembly>
<!-- By default, the minimum host version is equal to the SDK version -->
<!-- You can change this if your add-in supports older RobotStudio versions -->
<MinimumHostVersion>22.1</MinimumHostVersion>
<Dependencies>Online</Dependencies>
<!-- Change Platform to x86 if your add-in uses any native x86 components -->
<Platform>Any</Platform>
</RobotStudioAddIn>