Message 1 of 10
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello Everyone,
I have plug-in and I bundled it according to explained process in help documentation. But it isn't loaded by AppAutoLoader on Autocad startup. I tried all of suggested way in this forum. But I couldn't find any solution. I am using AutoCAD 2021. My PackageContents.xml content is below. Please anyone can help me?
<?xml version="1.0" encoding="utf-8" ?>
<ApplicationPackage
SchemaVersion="1.0"
AutodeskProduct="AutoCAD"
ProductType="Application"
AppVersion="1.0"
Author="---------"
Name="Grid Line Plug-In for AutoCAD"
Description="Draws grid line with automatic labeling"
Icon="./Contents/Resources/Grid_Line.ico"
HelpFile="./Contents/Resources/SC_Grid_Line_for_AutoCAD_Help.htm"
ProductCode="[C715545E-4761-4A03-90FA-51097B92616B]"
>
<CompanyDetails
Name="-------------"
Url="---------------"
Email="-------------------"
/>
<RuntimeRequirements OS="Win32|Win64" Platform="AutoCAD*|AutoCAD" SeriesMin="R15.0" SeriesMax="R24.0"/>
<Components>
<ComponentEntry AppName="Grid Line" ModuleName="./Contents/GridLine.dll" AppType="Dependency" LoadOnAutoCADStartup="True" LoadOnCommandInvocation="True" LoadOnRequest="True"/>
<RuntimeRequirements OS="Win32|Win64" Platform="AutoCAD*|AutoCAD" SeriesMin="R15.0" SeriesMax="R24.0" SupportPath=".\Contents\"/>
<Commands GroupName="ADSK_APPAMANAGER">
<Command Local="GRIDLINE" Global="GRIDLINE" Description="Launches the Grid Line command."/>
<Command Local="GL" Global="GL" Description="Launches the Grid Line command."/>
</Commands>
</Components>
</ApplicationPackage>
Solved! Go to Solution.