<?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: Troubleshooting PackageContents.xml in Autocad 2025 in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12922278#M4026</link>
    <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14801"&gt;@Ed__Jobe&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;AutoCAD 2025?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 26 Jul 2024 17:39:13 GMT</pubDate>
    <dc:creator>Alexander.Rivilis</dc:creator>
    <dc:date>2024-07-26T17:39:13Z</dc:date>
    <item>
      <title>Troubleshooting PackageContents.xml in Autocad 2025</title>
      <link>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12765449#M4012</link>
      <description>&lt;P&gt;I'm having problems with Autoloading my Plugin in AutoCAD 2025.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It works fine in AutoCAD 2024.&lt;/P&gt;&lt;P&gt;It works fine if I manually use the NETLOAD command in AutoCAD 2025.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I &lt;EM&gt;did&lt;/EM&gt; have a SeriesMax of R23.4 in my PackageContents but I &lt;U&gt;removed&lt;/U&gt; that parameter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Based on the post&amp;nbsp;&lt;A title="Solved: DLL in Plugin Bundle Fail to be Autoloaded" href="https://forums.autodesk.com/t5/net/dll-in-plugin-bundle-fail-to-be-autoloaded/td-p/8344111" target="_blank" rel="noopener"&gt;Solved: DLL in Plugin Bundle Fail to be Autoloaded&lt;/A&gt;&amp;nbsp;I even checked the PackageContents.xml for non-printable characters, but nothing unusual was found.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At this point I'm focused on the PackageContents.xml file, but I'm not sure what my next steps should be.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;
&amp;lt;ApplicationPackage SchemaVersion="1.0" 
Name="BlockExtractor" 
AppVersion="2024.2.2.1" 
Description="Block Extractor" 
Author="Steven Seyler" 
ProductCode="{951D58DA-FCD7-4AEC-8453-2DF130AC9FDB}" &amp;gt;
  &amp;lt;CompanyDetails Name="Flex-N-Gate" Url="http://www.flexngate.com" Email="sseyler@flexngate.com" /&amp;gt;
  &amp;lt;Components&amp;gt;
    &amp;lt;RuntimeRequirements OS="Win64" SeriesMin="R20.0" /&amp;gt;
    &amp;lt;ComponentEntry AppName="BlockExtractor" ModuleName="BlockExtractor.dll" AppDescription="Block Extractor" LoadOnAutoCADStartup="True"&amp;gt;
	  &amp;lt;Commands GroupName="FNGAPD"&amp;gt;
        &amp;lt;Command Local="Extract" Global="Extract" /&amp;gt;
      &amp;lt;/Commands&amp;gt;
	
	&amp;lt;/ComponentEntry&amp;gt;
  &amp;lt;/Components&amp;gt;
&amp;lt;/ApplicationPackage&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 May 2024 17:24:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12765449#M4012</guid>
      <dc:creator>sseylerTT9ZJ</dc:creator>
      <dc:date>2024-05-10T17:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: Troubleshooting PackageContents.xml in Autocad 2025</title>
      <link>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12765502#M4013</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14982187"&gt;@sseylerTT9ZJ&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It works fine if I manually use the NETLOAD command in AutoCAD 2025.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;That would suggest that the issue is in the code that runs at startup (e.g., an IExtensionApplication?). This is an AutoCAD managed runtime design issue that many have been bitten by. It's caused by the fact that AutoCAD's managed runtime conceals/suppresses exceptions in code that automatically executes at startup (e.g., IExtensionApplication.Initialize).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The NETLOAD command executes the startup code in the document execution context, whereas if the code is loaded automatically at startup, it runs in the application context. If the startup code is sensitive to the execution context, it often results in this very symptom (e.g., it works with NETLOAD but not when loaded at startup, or visa-verse).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What you should do is verify if the code is actually loading at startup, or not.&amp;nbsp; If it is loading, and there's an exception thrown by any code that runs at startup, the exception will be suppressed/concealed by the AutoCAD managed runtime, (unless you run the code in a handler for the Application.Idle event), Such exceptions will also prevent commands from being defined, making it appear as if the extension was not loaded.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 May 2024 18:06:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12765502#M4013</guid>
      <dc:creator>ActivistInvestor</dc:creator>
      <dc:date>2024-05-10T18:06:39Z</dc:date>
    </item>
    <item>
      <title>Re: Troubleshooting PackageContents.xml in Autocad 2025</title>
      <link>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12785510#M4014</link>
      <description>&lt;P&gt;No &lt;SPAN&gt;IExtensionApplication, so no&amp;nbsp;IExtensionApplication.Initialize.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For testing purposes I added it with stubs for Initialize and Terminate, no change. I've tried adding code to the Initialize to test that it's running at startup, but I'll confess I'm not sure what code should be able to run in ACAD's application context - a simple MessageBox.Show doesn't work but I'm not certain what conclusion to draw from that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My original code:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using Autodesk.AutoCAD.Runtime;
using Autodesk.AutoCAD.ApplicationServices;
using Autodesk.AutoCAD.DatabaseServices;
using Autodesk.AutoCAD.EditorInput;

using Microsoft.Office.Interop;

using Autodesk.AutoCAD.Windows;
// using Microsoft.Office.Interop.Excel;

[assembly: CommandClass(typeof(ExtractBlocks.Class1))]

namespace ExtractBlocks
{
    public class Class1
    {
        [CommandMethod("Extract")]
        public static void ExtractBlocks()
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And as it sits right now:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using Autodesk.AutoCAD.Runtime;
using Autodesk.AutoCAD.ApplicationServices;
using Autodesk.AutoCAD.DatabaseServices;
using Autodesk.AutoCAD.EditorInput;

using Microsoft.Office.Interop;

using Autodesk.AutoCAD.Windows;
using Microsoft.Office.Interop.Excel;
using System.Windows;
// using Microsoft.Office.Interop.Excel;

[assembly: ExtensionApplication(typeof(ExtractBlocks.HelloWorldApp))]
[assembly: CommandClass(typeof(ExtractBlocks.Class1))]

namespace ExtractBlocks
{

    public class HelloWorldApp : Autodesk.AutoCAD.Runtime.IExtensionApplication
    {
        void IExtensionApplication.Initialize()
        {
            MessageBox.Show("Blockexport Running");
        }

        void IExtensionApplication.Terminate()
        {
        }
    }

    public class Class1
    {
        [CommandMethod("Extract")]
        public static void ExtractBlocks()
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2024 17:59:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12785510#M4014</guid>
      <dc:creator>sseylerTT9ZJ</dc:creator>
      <dc:date>2024-05-20T17:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: Troubleshooting PackageContents.xml in Autocad 2025</title>
      <link>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12785686#M4015</link>
      <description>&lt;P&gt;Your ExtractBlocks() method is missing a body, but I don't think that would cause the problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At this point, what I would do is try to &lt;A href="https://help.autodesk.com/view/OARX/2023/ENU/?guid=GUID-70D60274-57E0-4B22-8D0C-3C7F212A7CAF" target="_blank" rel="noopener"&gt;register the assembly for demand-loading via the registry&lt;/A&gt;, and see if it loads and defines your commands (you can register it to load at startup, or when one of the command methods it includes is first-issued), by setting LOADCTRLS appropriately:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;0x01:&amp;nbsp;Load the application upon detection of proxy object.&lt;/LI&gt;&lt;LI&gt;0x02:&amp;nbsp;Load the application upon AutoCAD startup.&lt;/LI&gt;&lt;LI&gt;0x04:&amp;nbsp;Load the application upon invocation of a command.&lt;/LI&gt;&lt;LI&gt;0x08:&amp;nbsp;Load the application upon request by the user or another application.&lt;/LI&gt;&lt;LI&gt;0x10:&amp;nbsp;Do not load the application.&lt;/LI&gt;&lt;LI&gt;0x20:&amp;nbsp;Load the application transparently.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2024 19:42:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12785686#M4015</guid>
      <dc:creator>ActivistInvestor</dc:creator>
      <dc:date>2024-05-20T19:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: Troubleshooting PackageContents.xml in Autocad 2025</title>
      <link>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12785869#M4016</link>
      <description>&lt;P&gt;The body was just folded when I copied the code, so it didn't come over.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So listing it in the Registry works, even with a LOADCTRLS = 0x0002. That should be the same timing as a bundle file, right?&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2024 21:28:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12785869#M4016</guid>
      <dc:creator>sseylerTT9ZJ</dc:creator>
      <dc:date>2024-05-20T21:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: Troubleshooting PackageContents.xml in Autocad 2025</title>
      <link>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12786264#M4017</link>
      <description>&lt;P&gt;This issue has occured to me also, so i'm looking forwarding some solution&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i also removed the versionMax Attribute for Application tag, but it seems not related to this issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and when execute the autocad 2025,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in registry for autocad 2025 loaded key(\HKEY_CURRENT_USER\Software\Autodesk\AutoCAD\R25.0\ACAD-8101:409\Loaded)&lt;BR /&gt;&lt;BR /&gt;there is also exist my .bundle subkey, but it does not has its subkeys not like other bundles in same parent key which have the relative path of my .dll file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;while it has subkeys like other bundles in R24.3 and the .dll file loaded well&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 03:31:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12786264#M4017</guid>
      <dc:creator>22951050</dc:creator>
      <dc:date>2024-05-21T03:31:30Z</dc:date>
    </item>
    <item>
      <title>Re: Troubleshooting PackageContents.xml in Autocad 2025</title>
      <link>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12786282#M4018</link>
      <description>&lt;P&gt;If it works when you register it manually in the registry, then it has to be a problem in AutoCAD, new to 2025.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 03:38:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12786282#M4018</guid>
      <dc:creator>ActivistInvestor</dc:creator>
      <dc:date>2024-05-21T03:38:48Z</dc:date>
    </item>
    <item>
      <title>Re: Troubleshooting PackageContents.xml in Autocad 2025</title>
      <link>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12788137#M4019</link>
      <description>&lt;P&gt;While I don't love the outcome, I do greatly appreciate your assistance in getting to it!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4476837"&gt;@ActivistInvestor&lt;/a&gt;&amp;nbsp;!&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 18:11:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12788137#M4019</guid>
      <dc:creator>sseylerTT9ZJ</dc:creator>
      <dc:date>2024-05-21T18:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: Troubleshooting PackageContents.xml in Autocad 2025</title>
      <link>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12817936#M4020</link>
      <description>&lt;P&gt;You need to provide separate bounds for both AutoCAD 2024 and AutoCAD 2025, as the underlying .NET runtime has changed from .NET 4.x to NET 8.0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;
&amp;lt;ApplicationPackage SchemaVersion="1.0" 
Name="BlockExtractor" 
AppVersion="2024.2.2.1" 
Description="Block Extractor" 
Author="Steven Seyler" 
ProductCode="{951D58DA-FCD7-4AEC-8453-2DF130AC9FDB}" &amp;gt;
  &amp;lt;CompanyDetails Name="Flex-N-Gate" Url="http://www.flexngate.com" Email="sseyler@flexngate.com" /&amp;gt;
  &amp;lt;Components&amp;gt;
    &amp;lt;RuntimeRequirements OS="Win64" SeriesMin="R20.0" SeriesMax="R24.3" /&amp;gt;
    &amp;lt;ComponentEntry AppName="BlockExtractor" ModuleName="BlockExtractor.dll" AppDescription="Block Extractor" LoadOnAutoCADStartup="True"&amp;gt;
	  &amp;lt;Commands GroupName="FNGAPD"&amp;gt;
        &amp;lt;Command Local="Extract" Global="Extract" /&amp;gt;
      &amp;lt;/Commands&amp;gt;
	
	&amp;lt;/ComponentEntry&amp;gt;
&amp;lt;RuntimeRequirements OS="Win64" SeriesMin="R25.0" SeriesMax="R25.0" /&amp;gt;
    &amp;lt;ComponentEntry AppName="BlockExtractor" ModuleName="BlockExtractor_NET8.0.dll" AppDescription="Block Extractor" LoadOnAutoCADStartup="True"&amp;gt;
	  &amp;lt;Commands GroupName="FNGAPD"&amp;gt;
        &amp;lt;Command Local="Extract" Global="Extract" /&amp;gt;
      &amp;lt;/Commands&amp;gt;
	
	&amp;lt;/ComponentEntry&amp;gt;
  &amp;lt;/Components&amp;gt;
&amp;lt;/ApplicationPackage&amp;gt;&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 04 Jun 2024 15:14:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12817936#M4020</guid>
      <dc:creator>moogalm</dc:creator>
      <dc:date>2024-06-04T15:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: Troubleshooting PackageContents.xml in Autocad 2025</title>
      <link>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12873583#M4021</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1937895"&gt;@moogalm&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried you solution for xml file but it didn't work for me. Based on Autodesk documentation&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.autodesk.com/view/OARX/2025/ENU/?guid=GUID-3C25E517-8660-4BB7-9447-2310462EF06F" target="_blank"&gt;https://help.autodesk.com/view/OARX/2025/ENU/?guid=GUID-3C25E517-8660-4BB7-9447-2310462EF06F&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I moved &amp;lt;RuntimeRequirements&amp;gt; inside ComponentEntry and it works.&lt;/P&gt;&lt;P&gt;Can you check it please.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2024 11:51:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12873583#M4021</guid>
      <dc:creator>n_Sovljanski</dc:creator>
      <dc:date>2024-07-02T11:51:38Z</dc:date>
    </item>
    <item>
      <title>Re: Troubleshooting PackageContents.xml in Autocad 2025</title>
      <link>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12873585#M4022</link>
      <description>&lt;P&gt;Sorry, you are right,&amp;nbsp;&lt;SPAN&gt;RuntimeRequirements should be at ComponentEntry level in this case.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2024 11:54:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12873585#M4022</guid>
      <dc:creator>moogalm</dc:creator>
      <dc:date>2024-07-02T11:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: Troubleshooting PackageContents.xml in Autocad 2025</title>
      <link>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12874224#M4023</link>
      <description>&lt;P&gt;This could be useful for creating xml file&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.autodesk.com/view/OARX/2025/ENU/?guid=GUID-3C25E517-8660-4BB7-9447-2310462EF06F" target="_blank"&gt;https://help.autodesk.com/view/OARX/2025/ENU/?guid=GUID-3C25E517-8660-4BB7-9447-2310462EF06F&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2024 16:42:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12874224#M4023</guid>
      <dc:creator>n_Sovljanski</dc:creator>
      <dc:date>2024-07-02T16:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: Troubleshooting PackageContents.xml in Autocad 2025</title>
      <link>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12874231#M4024</link>
      <description>&lt;P&gt;Hi, would you be so kind and correct it in your blog&lt;/P&gt;&lt;P&gt;&lt;A href="https://adndevblog.typepad.com/autocad/2024/06/autocad-2025-update-your-packagecontentsxml-with-runtimerequirements.html" target="_blank"&gt;https://adndevblog.typepad.com/autocad/2024/06/autocad-2025-update-your-packagecontentsxml-with-runtimerequirements.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2024 16:39:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12874231#M4024</guid>
      <dc:creator>n_Sovljanski</dc:creator>
      <dc:date>2024-07-02T16:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: Troubleshooting PackageContents.xml in Autocad 2025</title>
      <link>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12922230#M4025</link>
      <description>&lt;P&gt;I also have a bundle that won't load the dll at startup. Of course it will netload, and I have created a registry entry for it. It will autoload that way, but not using the bundle. I have the bundle in program files to avoid the SECURELOAD issue. In the xml below, if I comment out the dll component, the cuix loads. So there's something wrong with the dll component. I've stared at is and researched all I can find. It's probably staring me in the face, but I can't see it. Maybe some fresh eyes can see it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;&amp;lt;?xml version="1.0" encoding="utf-8" ?&amp;gt;
&amp;lt;ApplicationPackage
    SchemaVersion="1.0"
    AutodeskProduct="AutoCAD"
    ProductType="Application"
    AppVersion="2022.0.0.1"
    ProductCode="{BCF17CB5-B9E9-4877-BB89-23E74576CE47}"
    UpgradeCode="{0F36311B-4F7D-4F79-9F20-D8060649FDB1}"
    Name="EJ_PageSetupImport"
    Description="Utility for importing page setups into current drawing."
    Author="Ed Jobe"
    Helpfile="./Contents/PageSetupImportHelp.html"&amp;gt;
  &amp;lt;CompanyDetails
    Name=""
    URL=""
    Email=""&amp;gt;
  &amp;lt;/CompanyDetails&amp;gt;
  &amp;lt;Components&amp;gt;
    &amp;lt;ComponentEntry
      AppName="EJ_PageSetupImport_CUIX"
      AppDescription="Menu for EJ_PageSetupImport."
      ModuleName="./Contents/EJ_PageSetupImport.cuix"
	    AppType="CuiX"
      LoadOnAutoCADStartup="True"
      &amp;gt;
    &amp;lt;/ComponentEntry&amp;gt;
    &amp;lt;ComponentEntry
      AppName="EJ_PageSetupImport"
      AppDescription="Tools for importing page setups into the current drawing."
      MouduleName="./Contents/EJ_PageSetupImport.dll"
	    AppType=".Net"
      LoadOnAutoCADStartup="True"
      &amp;gt;
      &amp;lt;RuntimeRequirements OS="Win64" Platform="AutoCAD*" SeriesMin="R19.0" SeriesMax="R24.3" SupportPath="./Contents"/&amp;gt;
      &amp;lt;Commands GroupName="EJ_"&amp;gt;
        &amp;lt;Command Local="ImportPageSetupsConfig" Global="ImportPageSetupsConfig"/&amp;gt;
        &amp;lt;Command Local="ImportPageSetupND" Global="ImportPageSetupND"/&amp;gt;
      &amp;lt;/Commands&amp;gt;
    &amp;lt;/ComponentEntry&amp;gt;
  &amp;lt;/Components&amp;gt;
&amp;lt;/ApplicationPackage&amp;gt;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Update: I updated the xml above. I was missing the following keys: &lt;BR /&gt;AutodeskProduct="AutoCAD"&lt;BR /&gt;ProductType="Application"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 18:02:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12922230#M4025</guid>
      <dc:creator>Ed__Jobe</dc:creator>
      <dc:date>2024-08-13T18:02:23Z</dc:date>
    </item>
    <item>
      <title>Re: Troubleshooting PackageContents.xml in Autocad 2025</title>
      <link>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12922278#M4026</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14801"&gt;@Ed__Jobe&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;AutoCAD 2025?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2024 17:39:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12922278#M4026</guid>
      <dc:creator>Alexander.Rivilis</dc:creator>
      <dc:date>2024-07-26T17:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: Troubleshooting PackageContents.xml in Autocad 2025</title>
      <link>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12922283#M4027</link>
      <description>&lt;P&gt;No, 2023 and 2024. thanks.&lt;/P&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1937895"&gt;@moogalm&lt;/a&gt;&amp;nbsp; Do you have any insights?&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 19:48:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12922283#M4027</guid>
      <dc:creator>Ed__Jobe</dc:creator>
      <dc:date>2024-07-29T19:48:01Z</dc:date>
    </item>
    <item>
      <title>Re: Troubleshooting PackageContents.xml in Autocad 2025</title>
      <link>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12956514#M4028</link>
      <description>&lt;P&gt;Update: I updated the xml above. I was missing the following keys: &lt;BR /&gt;AutodeskProduct="AutoCAD"&lt;BR /&gt;ProductType="Application"&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 18:03:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/troubleshooting-packagecontents-xml-in-autocad-2025/m-p/12956514#M4028</guid>
      <dc:creator>Ed__Jobe</dc:creator>
      <dc:date>2024-08-13T18:03:01Z</dc:date>
    </item>
  </channel>
</rss>

