This example reflects what a package for a plug-in might contain and how it is structured on disk.
.bundle is not a file, but a folder name with a BUNDLE extension. The following is an example of a plug-in that contains a LSP file as the main program and a DWG support file. The following plug-in example is named OfficeSymbols and its folder structure might look something like; folders are in bold:
<?xml version="1.0" encoding="utf-8" ?>
<ApplicationPackage SchemaVersion="1.0" AppVersion="1.0"
ProductCode="[Add Unique Plug-in GUID Here]"
Name="Office Symbols"
Icon="./Contents/Resources/OfficeSymbols.ico"
Helpfile="./Contents/Resources/OfficeSymbols.htm"
>
<CompanyDetails
Name="ABC Indoor CAD, Inc."
Email="support@abcindoorcad.com"
/>
<Components>
<ComponentEntry
ModuleName="./Contents/LISP/OfficeSymbolsUtilities.lsp"
/>
</Components>
</ApplicationPackage>