Message 1 of 6
Plugin .Bundle is loading Cui, Tool Palettes, LISP but is not loading .Net .DLL. Manual NetLoad command still works.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
This problem arose this morning on a new computer and install of AutoCAD 2024. I have a .bundle that other members on the team are using and works fine for them. But getting a new person up and running this morning proved challenging.
This is the PackageContents.xml file that is used for everyones .bundle folder (used by everyone it has worked for and the one person it is not working for)
<?xml version="1.0" encoding="utf-8"?>
<ApplicationPackage
SchemaVersion="1.0"
ProductType="Application"
Name="MyTools Tools"
AppVersion="31.6.10"
Description="Company Tools"
Author="Me"
Icon="renamesubs16.bmp"
ProductCode="C9A7FDFB-F608-45ED-9465-BF7D1F0F1C1F">
<CompanyDetails
Name="ACME Inc."
Phone="800-588-2300"
Url="http://www.acme.com/"
Email="me@acme.com" />
<Components Description="AutoCAD 2021-2024">
<RuntimeRequirements SupportPath="./" Platform="AutoCAD*" SeriesMin="R21.0" SeriesMax="R25.0" ToolPalettePath="./Palettes/" />
<ComponentEntry
AppName="My CUI"
ModuleName="./CUI/company.cuix"
AppType="CuiX">
<RuntimeRequirements OS="Win64"
Platform="AutoCAD"
SeriesMin="R21.0"
SeriesMax="R24.0"/>
</ComponentEntry>
<ComponentEntry
AppName="Properties for the Tools"
ModuleName="./DLL/asdkOPMNetExt.dll"
AppType=".Net"
LoadOnAutoCADStartup="True">
<RuntimeRequirements OS="Win64"
Platform="AutoCAD"
SeriesMin="R21.0"
SeriesMax="R24.0"/>
</ComponentEntry>
<ComponentEntry
AppName="Company Tools"
ModuleName="./DLL/CompanyTools.dll"
LoadOnAutoCADStartup="True">
<RuntimeRequirements OS="Win64"
Platform="AutoCAD"
SeriesMin="R21.0"
SeriesMax="R24.0"/>
</ComponentEntry>
</Components>
</ApplicationPackage>
There are two .DLL files that get loaded. One handles interfacing with COM so that custom properties can be created in .NET.
the other is our .NET code.
If I manually run the NETLOAD command and select "CompanyTools.dll" the .DLL successfully loads.