I am trying to set up a .bundle folder to load a series of plugins I've designed for AutoCAD. One of these plugins is a .dvb file so in the PackageContents.xml I have the following XML code
<ComponentEntry AppName = "" Version = "2014.1" ModuleName = "./Contents/Windows/WindowsDoors.dvb" AppDescription = "" PerDocument ="True" LoadOnAutoCADStartup="True">
<Commands>
<Command Local="CSC" Global="CAD_STANDARD_CREATOR" />
<Command Local="CSB" Global="CAD_STANDARD_BLOCK" />
<Command Local="CSP" Global="CAD_STANDARD_PATH" />
</Commands>
</ComponentEntry>
When I start AutoCAD and try to run the corresponding plugin the command line tells me
Command: -vbarun
Macro name: RunMeWindowDoor
Macro not found.
It appears that AutoCAD is not finding the Macro even though I'm telling the XML file to load it in and I can't figure out what the cause of the error is.