For Stephen Preston or Fenton Webb
.. posted here because the DevBlog won't accept XML.
but EVERYONE should feel free to post relevant comments

Re : ADN DWG Debugger and DataBase Viewer - MGDDBG
http://adndevblog.typepad.com/autocad/2012/04/dwg-debugger-mgddbg-app-for-autocad-20122013.htmlI wanted to change the functionality to Demand load rather than than StartUp load
ie : use
LoadOnCommandInvocationThe attached
PackageContents.xml is my revised file.
Here's the Quandry : The LocalNames in the Source are
SnoopDb and
SnoopEd.They wouldn't work so I used the Global Names
MgdDbgSnoopDb and
MgdDbgSnoopEd as the LocalName.
The Assembly demand loads and runs sucessfully using the GlobalName at the CommandLine.
Lines 35 to 51 have been added and I've left the 2013 listing so the Assembly loads at startup.
<?xml version="1.0" encoding="utf-8"?>
<ApplicationPackage
AppNameSpace="adn.exchange.autodesk.com"
AppVersion="1.0.0"
Author="Fenton Webb"
AutodeskProduct="AutoCAD"
Description="Debugging tools for AutoCAD - MgdDBG"
HelpFile="./Contents/Resources/helpfile.html"
Icon="./Contents/Resources/resource/Inspector.jpg"
Name="DWG MgdDBG"
OnlineDocumentation=" "
ProductCode="{DB35F952-289A-4453-A46D-B424A6FCFDFB}"
ProductType="Application"
SchemaVersion="1.0"
SupportedLocales="Enu"
UpgradeCode="{E5B78003-2D7B-490F-B947-65D804392151}">
<CompanyDetails
Email=" adn.autodesk.com"
Name="Autodesk"
Phone=" "
Url=" www.autodesk.com"/>
<RuntimeRequirements
OS="Win32|Win64"
Platform="AutoCAD|AutoCAD*"
SeriesMax="R19.0"
SeriesMin="R18.2"/>
<Components
Description="AutoCAD 2012">
<RuntimeRequirements
OS="Win32|Win64"
Platform="AutoCAD*|AutoCAD"
SeriesMax="R18.2"
SeriesMin="R18.2"/>
<ComponentEntry
AppDescription="Debugging tools for AutoCAD - MgdDBG"
AppName="DWGMgdDBG"
LoadOnCommandInvocation="True"
ModuleName="./Contents/Resources/DWGMgdDbgSource/bin/Debug2012/MgdDbg.dll"
Version="1.0.0">
<Commands
GroupName="MgdDbg">
<Command
Global="MgdDbgSnoopDb"
Local="MgdDbgSnoopDb"/>
<Command
Global="MgdDbgSnoopEd"
Local="MgdDbgSnoopEd"/>
</Commands>
</ComponentEntry>
<ComponentEntry
Description="AutoCAD 2013">
<RuntimeRequirements
OS="Win32|Win64"
Platform="AutoCAD*|AutoCAD"
SeriesMax="R19.0"
SeriesMin="R19.0"/>
<ComponentEntry
AppDescription="Debugging tools for AutoCAD - MgdDBG"
AppName="DWGMgdDBG"
ModuleName="./Contents/Resources/DWGMgdDbgSource/bin/Debug2013/MgdDbg.dll"
Version="1.0.0"/>
</ComponentEntry>
</Components>
</ApplicationPackage>
Any ideas why the LocalName is not being recognised ??
Regards
Kerry