-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTwRobotstudioDclickCenter.rsaddin
33 lines (26 loc) · 1.48 KB
/
TwRobotstudioDclickCenter.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
33
<?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.TwRobotstudioDclickCenter</ApplicationId>
<DisplayName>Doubleclick to center</DisplayName>
<DisplayVersion>1.0.0.0</DisplayVersion>
<!-- <Description>TwRobotstudioDclickCenter description</Description/> -->
<AddInType>General</AddInType>
<Assembly>
<!-- The name of the dll that contains the add-in entry point -->
<FileName>TwRobotstudioDclickCenter.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>Station</Dependencies>
<!-- Change Platform to x86 if your add-in uses any native x86 components -->
<Platform>Any</Platform>
</RobotStudioAddIn>