by Fenton Webb
Following on from my previous post DWG Inspector for AutoCAD 2012/2013, here is the MgdDbg tool migrated to 2012 and 2013 bundled as an Exchange App – you can download it here
One thing to note is that there are commands included in the app, however, because this app has startup code (it creates context menu entries) I have omitted all ComponentEntry initialization options, so LoadOnStartup is assumed. (I have not used the LoadOnCommandInvocation attribute)
Here’s the PackageContents.xml found in the base of the .bundle folder, in case you are interested:
<?xml version="1.0" encoding="utf-8"?>
<ApplicationPackage SchemaVersion="1.0" AutodeskProduct="AutoCAD" ProductType="Application" Name="DWG MgdDBG" AppVersion="1.0.0" Description="Debugging tools for AutoCAD - MgdDBG" Author="Fenton Webb" Icon="./Contents/Resources/resource/Inspector.jpg" AppNameSpace="adn.exchange.autodesk.com" OnlineDocumentation=" www.autodesk.com" HelpFile="./Contents/Resources/helpfile.html" ProductCode="{DB35F952-289A-4453-A46D-B424A6FCFDFB}" UpgradeCode="{E5B78003-2D7B-490F-B947-65D804392151}" SupportedLocales="Enu|Ptb|Deu|Esp|Fra|Ita">
<CompanyDetails Name="Autodesk" Phone=" " Url=" www.autodesk.com" Email=" adn.autodesk.com" />
<RuntimeRequirements OS="Win32|Win64" Platform="AutoCAD|AutoCAD*" SeriesMin="R18.2" SeriesMax="R19.0" />
<Components Description="AutoCAD 2012">
<RuntimeRequirements OS="Win32|Win64" Platform="AutoCAD*|AutoCAD" SeriesMin="R18.2" SeriesMax="R18.2" />
<ComponentEntry AppName="DWGMgdDBG" Version="1.0.0" ModuleName="./Contents/Resources/DWGMgdDbgSource/bin/Debug2012/MgdDbg.dll" AppDescription="Debugging tools for AutoCAD - MgdDBG" />
</Components>
<Components Description="AutoCAD 2013">
<RuntimeRequirements OS="Win32|Win64" Platform="AutoCAD*|AutoCAD" SeriesMin="R19.0" SeriesMax="R19.0" />
<ComponentEntry AppName="DWGMgdDBG" Version="1.0.0" ModuleName="./Contents/Resources/DWGMgdDbgSource/bin/Debug2013/MgdDbg.dll" AppDescription="Debugging tools for AutoCAD - MgdDBG" />
</Components>
</ApplicationPackage>