<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Autoloader not working in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/autoloader-not-working/m-p/8928695#M21773</link>
    <description>&lt;P&gt;Can you shed some light on the Product code and the Upgrade code. I was reading &lt;A href="https://adndevblog.typepad.com/autocad/2013/01/autodesk-autoloader-white-paper.html" target="_blank" rel="noopener"&gt;this&lt;/A&gt; white paper but could not understand clearly. And I see that you used it in your above code so thought I'd ask.&lt;/P&gt;</description>
    <pubDate>Wed, 24 Jul 2019 18:13:17 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-07-24T18:13:17Z</dc:date>
    <item>
      <title>Autoloader not working</title>
      <link>https://forums.autodesk.com/t5/net-forum/autoloader-not-working/m-p/8928356#M21768</link>
      <description>&lt;P&gt;I followed the example structure &lt;A href="http://help.autodesk.com/view/OARX/2019/ENU/?guid=GUID-40F5E92C-37D8-4D54-9497-CD9F0659F9BB" target="_blank" rel="noopener"&gt;here&lt;/A&gt; to autoload a lsp file, but when calling the command I get unknown command error. I thought I probably had some user error, so tried &lt;A href="https://forums.autodesk.com/t5/net/autoloader-doesn-t-unknown-command/m-p/8070731#M59399" target="_blank" rel="noopener"&gt;this&lt;/A&gt; example by&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/481027"&gt;@Alexander.Rivilis&lt;/a&gt;. Just copied the zip file to "C:\ProgramData\Autodesk\ApplicationPlugins" and extracted to "PartsList.bundle". Again I get the &lt;EM&gt;error&amp;nbsp;Unknown command "PARTSLIST". Press F1 for help. &lt;/EM&gt;Is there something more I need to do other than extracting that zip file in the appropriate location?&lt;/P&gt;&lt;P&gt;My end goal is to autoload a compiled lsp file. If I can atleast get a working example on my machine then I can proceed from there. For now, after failing to run a working example (working for other users), I absolutely have no clue how to proceed. I will really appreciate any suggestions/comments.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2019 15:54:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autoloader-not-working/m-p/8928356#M21768</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-24T15:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: Autoloader not working</title>
      <link>https://forums.autodesk.com/t5/net-forum/autoloader-not-working/m-p/8928667#M21769</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You should show you PackageContents.xml code and the .bundle folder structure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is an example of a minimalist PackageContents.xml to autoload a .NET dll (it could be .lsp or .fas or.vlx file as well).&lt;/P&gt;
&lt;P&gt;folder structure:&lt;/P&gt;
&lt;PRE&gt;Trapeze.bundle
    PackageContents.xml
    Contents
        Trapezoid.dll&lt;/PRE&gt;
&lt;P&gt;PackageContents.xml&lt;/P&gt;
&lt;PRE&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;ApplicationPackage
  SchemaVersion="1.0"
  AppVersion="1.0.0"
  ProductCode="{83F90232-3CEB-40F0-88BE-2638C843CEA5}"
  UpgradeCode="{B31D4C65-464B-4460-9E9F-B36D7B1C453A}"
  Name="Trapezoid"
  AutodeskProduct="AutoCAD"
  ProductType="Application"&amp;gt;
  &amp;lt;Components&amp;gt;
    &amp;lt;RuntimeRequirements OS="Win32|Win64" Platform="AutoCAD*" SeriesMin="R19.0" SeriesMax="R23.0" /&amp;gt;
    &amp;lt;ComponentEntry
      AppName="Trapezoid"
      Version="1.0.0"
      ModuleName="./Contents/Trapezoid.dll"
      LoadOnAutoCADStartup="True"&amp;gt;
    &amp;lt;/ComponentEntry&amp;gt;
  &amp;lt;/Components&amp;gt;
&amp;lt;/ApplicationPackage&amp;gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS: if you download a ZIP file from internet, you should unblock the ZIP file before extracting files. &lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2019 17:57:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autoloader-not-working/m-p/8928667#M21769</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2019-07-24T17:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: Autoloader not working</title>
      <link>https://forums.autodesk.com/t5/net-forum/autoloader-not-working/m-p/8928680#M21770</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What version of AutoCAD did you use to check? &lt;A href="https://forums.autodesk.com/autodesk/attachments/autodesk/152/59459/1/bundle%20tree%20and%20xml.zip" target="_blank" rel="noopener"&gt;Refered bundle&lt;/A&gt; was designed for AutoCAD 2013 and 2014. You can check it with AutoCAD 2019 or 2020 if replace in PackageContents.xml string "R19.1" with "R23.1"&lt;/P&gt;
&lt;P&gt;Also you have to unblock zip-file with bundle: &lt;A href="https://winaero.com/blog/how-to-unblock-files-downloaded-from-internet-in-windows-10/" target="_blank"&gt;https://winaero.com/blog/how-to-unblock-files-downloaded-from-internet-in-windows-10/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2019 18:06:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autoloader-not-working/m-p/8928680#M21770</guid>
      <dc:creator>Alexander.Rivilis</dc:creator>
      <dc:date>2019-07-24T18:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: Autoloader not working</title>
      <link>https://forums.autodesk.com/t5/net-forum/autoloader-not-working/m-p/8928684#M21771</link>
      <description>&lt;P&gt;Great! I look at your code and compared with the Partlist code and realized the series max was set at 19 vs yours 23. I changed that to 22.0 in my code and it is working great for now. Thanks.&lt;/P&gt;&lt;P&gt;p.s. Next task is to see if I can somehow create an installer. Would you know of any good links that would help with that?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2019 18:03:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autoloader-not-working/m-p/8928684#M21771</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-24T18:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: Autoloader not working</title>
      <link>https://forums.autodesk.com/t5/net-forum/autoloader-not-working/m-p/8928685#M21772</link>
      <description>&lt;P&gt;I finished replying to&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&amp;nbsp; and saw your reply. You got it right!! Thanks to both of you.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2019 18:05:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autoloader-not-working/m-p/8928685#M21772</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-24T18:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: Autoloader not working</title>
      <link>https://forums.autodesk.com/t5/net-forum/autoloader-not-working/m-p/8928695#M21773</link>
      <description>&lt;P&gt;Can you shed some light on the Product code and the Upgrade code. I was reading &lt;A href="https://adndevblog.typepad.com/autocad/2013/01/autodesk-autoloader-white-paper.html" target="_blank" rel="noopener"&gt;this&lt;/A&gt; white paper but could not understand clearly. And I see that you used it in your above code so thought I'd ask.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2019 18:13:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autoloader-not-working/m-p/8928695#M21773</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-24T18:13:17Z</dc:date>
    </item>
  </channel>
</rss>

