-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathPackageContents.xml
45 lines (41 loc) · 1.35 KB
/
PackageContents.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="utf-8" ?>
<ApplicationPackage
SchemaVersion="1.0"
Version="1.0"
ProductCode=""
HelpFile=""
Name="MyTestPackage"
Description="AutoCAD.IO Test Package"
Author="Albert Szilvasy" >
<CompanyDetails
Name="Autodesk, Inc"
Phone="415.555.5555"
Url="www.autodesk.com"
Email="albert.szilvasy@autodesk.com" />
<Components>
<RuntimeRequirements
OS="Win64"
Platform="AutoCAD" />
<ComponentEntry
AppName="MyTestPackage"
ModuleName="./Contents/CrxApp.dll"
AppDescription="AutoCAD.IO .net test app"
LoadOnCommandInvocation="True"
LoadOnAutoCADStartup="False"
>
<Commands GroupName="MyTestCommands">
<Command Global="TEST" Local="TEST" />
</Commands>
<AssemblyMappings>
<AssemblyMapping Name="MyTestPackage.Newtonsoft.Json" Path="./Contents/Newtonsoft.Json.dll" />
</AssemblyMappings>
</ComponentEntry>
<ComponentEntry
AppName="MyTestPackage.Newtonsoft.Json"
AppType="Dependency"
ModuleName="./Contents/Newtonsoft.Json.dll"
AppDescription="JSON processing library"
LoadOnAutoCADStartup="False"
/>
</Components>
</ApplicationPackage>