<?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: autocad 2025 plugin: Could not load file or assembly 'Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0 in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13757977#M85580</link>
    <description>&lt;P&gt;Any chance you could post a simple project with this working? I still can't get EF to work.&lt;/P&gt;</description>
    <pubDate>Thu, 07 Aug 2025 13:02:30 GMT</pubDate>
    <dc:creator>brand</dc:creator>
    <dc:date>2025-08-07T13:02:30Z</dc:date>
    <item>
      <title>autocad 2025 plugin: Could not load file or assembly 'Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13359973#M630</link>
      <description>&lt;P&gt;I am trying to add dependency injection framework to my autocad 2025 plugin.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;to demonstrate the issue I have created a small .NET 8.0 Test App class library.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I first made the test app and set the initialize method to write a message to the editor "Hello World"&amp;nbsp; The plugin loaded AOK and displays the message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I add a nuget package&amp;nbsp;Microsoft.Extensions.DependencyInjection ( I have tried others but I get the same error no mater which framework I choose)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I adjusted my test app to Initialise the dependency frame work:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;private void SetupIOC()
{
   ServiceCollection serviceCollection = new ServiceCollection();
   Debug.WriteLine($"ServiceCollection created erviceCollection.ToString()}");
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But now when loading the plugin throws an exception:&lt;BR /&gt;"Could not load file or assembly 'Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. &lt;STRONG&gt;The system cannot find the file specified&lt;/STRONG&gt;.":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Next I tried referenceing the dll's directly so that they would be copied to the output directory:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="oneMSN_0-1741441783308.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1475391i13F55C3DEA28140D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="oneMSN_0-1741441783308.png" alt="oneMSN_0-1741441783308.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;See there they are!&lt;/P&gt;&lt;P&gt;&amp;nbsp;now the error message changes slightly:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;{"Could not load file or assembly 'Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. &lt;STRONG&gt;Could not find or load a specific file&lt;/STRONG&gt;. (0x80131621)":"Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60"}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So in the first instance it could not find the file to load.&amp;nbsp; in the next is says it could not find or load.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have never encountered this in the ,NET Framework plugin world.&amp;nbsp; But this issue with the .NET Core stuff is really annoying as I cannot find a solution except maybe build my own version of an IOC implementation.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;In the test app I only have Startup.cs and here it is in it's entirety if anyone has had a similar issue please let me know how you solved it as at the moment I am completely stuck!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;using System.Diagnostics;
using Autodesk.AutoCAD.Runtime;
using Microsoft.Extensions.DependencyInjection;

namespace ACADTest
{
    public class Startup : IExtensionApplication
    {
        public void Initialize()
        {
            // Tell the user were loaded.
            try
            {
                SetupIOC();
            }
            catch (System.Exception ex)
            {
                Debug.WriteLine($"Error setting up IOC: {ex.Message}"); 
            }
            Autodesk.AutoCAD.ApplicationServices.Core.Application.DocumentManager.MdiActiveDocument.Editor.WriteMessage("Hello World");
        }

        public void Terminate()
        {
            // **TODO** Terminate still to figure out.
            // Might need to dispose of the container or something.
        }

        private void SetupIOC()
        {
            // **TODO** Setup IOC still to figure out.
            // Might need to register services here.

            ServiceCollection serviceCollection = new ServiceCollection();
            Debug.WriteLine($"ServiceCollection created {serviceCollection.ToString()}");
        }

    }
}&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 08 Mar 2025 13:58:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13359973#M630</guid>
      <dc:creator>oneMSN</dc:creator>
      <dc:date>2025-03-08T13:58:59Z</dc:date>
    </item>
    <item>
      <title>Re: autocad 2025 plugin: Could not load file or assembly 'Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13360543#M631</link>
      <description>&lt;P&gt;This is a longshot: Open your csproj file, and look for this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;&amp;lt;Nullable&amp;gt;enable&amp;lt;/Nullable&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you find it, remove it.&lt;/P&gt;</description>
      <pubDate>Sun, 09 Mar 2025 05:55:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13360543#M631</guid>
      <dc:creator>ActivistInvestor</dc:creator>
      <dc:date>2025-03-09T05:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: autocad 2025 plugin: Could not load file or assembly 'Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13360806#M632</link>
      <description>&lt;P&gt;Hi AI! &amp;nbsp;I have Nullable set to disabled it irks me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have attached the vs project to this post hopefully some trusting individual will try running it and let me know if it works for them or otherwise.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have never encountered this behaviour before, I have another plugin which uses nuget packages and it works fine. &amp;nbsp;I feel I am missing something simple but not sure what that is yet.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Mar 2025 14:29:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13360806#M632</guid>
      <dc:creator>oneMSN</dc:creator>
      <dc:date>2025-03-09T14:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: autocad 2025 plugin: Could not load file or assembly 'Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13361960#M633</link>
      <description>&lt;P&gt;I finally found the issue.&lt;BR /&gt;The latest and greatest is not always the best!&amp;nbsp; When I installed&lt;/P&gt;&lt;PRE&gt;Microsoft.Extensions.DependencyInjection&lt;/PRE&gt;&lt;P&gt;Nuget gave me the latest version v9.0&amp;nbsp; I found another plugin I have which works and discovered the version of the dll was v8.0, So I went back to NUGET and downgraded to v8.0 of this library and the issue went away.&amp;nbsp; This was quite frustrating, beware!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Mar 2025 11:38:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13361960#M633</guid>
      <dc:creator>oneMSN</dc:creator>
      <dc:date>2025-03-10T11:38:14Z</dc:date>
    </item>
    <item>
      <title>Re: autocad 2025 plugin: Could not load file or assembly 'Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13376173#M634</link>
      <description>&lt;P&gt;I'm fighting this same issue [could not find/load&amp;nbsp;&lt;SPAN&gt;Microsoft.Extensions.DependencyInjection.Abstractions]&amp;nbsp;&lt;/SPAN&gt;with EntityFrameworkCore, which I still haven't solved.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For IoC specifically, though, have you tried SimpleInjector? I was able to get that to work in an Autocad 2025 plugin.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 23:21:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13376173#M634</guid>
      <dc:creator>brand</dc:creator>
      <dc:date>2025-03-17T23:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: autocad 2025 plugin: Could not load file or assembly 'Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13376372#M635</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/585727"&gt;@oneMSN&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;I finally found the issue.&lt;BR /&gt;The latest and greatest is not always the best!&amp;nbsp; When I installed&lt;/P&gt;&lt;PRE&gt;Microsoft.Extensions.DependencyInjection&lt;/PRE&gt;&lt;P&gt;Nuget gave me the latest version v9.0&amp;nbsp; I found another plugin I have which works and discovered the version of the dll was v8.0, So I went back to NUGET and downgraded to v8.0 of this library and the issue went away.&amp;nbsp; This was quite frustrating, beware!&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/585727"&gt;@oneMSN&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I upvoted the Topic and your post because the solution of using the correct nuget version is one that is sort of hidden away in the configutation and not obvious from the code.&lt;/P&gt;&lt;P&gt;Thanks for posting back.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Mar 2025 03:38:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13376372#M635</guid>
      <dc:creator>kerry_w_brown</dc:creator>
      <dc:date>2025-03-18T03:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: autocad 2025 plugin: Could not load file or assembly 'Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13757778#M85579</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As my first contribution here, I'm upvoting this Topic and your post.&lt;/P&gt;&lt;P&gt;It works also for Autocad 2026, I didn't try a version above 8.0 though, but 9.X prevents your plugin to load.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;/P&gt;</description>
      <pubDate>Thu, 07 Aug 2025 10:44:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13757778#M85579</guid>
      <dc:creator>cedric_marchand</dc:creator>
      <dc:date>2025-08-07T10:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: autocad 2025 plugin: Could not load file or assembly 'Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13757977#M85580</link>
      <description>&lt;P&gt;Any chance you could post a simple project with this working? I still can't get EF to work.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Aug 2025 13:02:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13757977#M85580</guid>
      <dc:creator>brand</dc:creator>
      <dc:date>2025-08-07T13:02:30Z</dc:date>
    </item>
    <item>
      <title>Re: autocad 2025 plugin: Could not load file or assembly 'Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13766769#M85615</link>
      <description>&lt;P&gt;When use CsvHelper nuget package,it also like this problem, and i hace try some lower revision, but not work.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Aug 2025 03:19:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13766769#M85615</guid>
      <dc:creator>mystarxk-cn</dc:creator>
      <dc:date>2025-08-14T03:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: autocad 2025 plugin: Could not load file or assembly 'Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13769124#M85622</link>
      <description>&lt;P&gt;I was able to get CsvHelper to work. I've posted a sample solution here:&amp;nbsp;&lt;A href="https://github.com/leadensky/Autocad_CsvHelperTest" target="_blank"&gt;https://github.com/leadensky/Autocad_CsvHelperTest&lt;/A&gt;. A couple of settings were needed in the .csproj file:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="brand_0-1755270431157.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1561585i08042461F4BB3E1A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="brand_0-1755270431157.png" alt="brand_0-1755270431157.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After NETLOAD-ing the DLL, run CSVHELPERTEST command. Output from TestDoc.csv shown below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="brand_1-1755270553186.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1561586iA53C335E22D116C3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="brand_1-1755270553186.png" alt="brand_1-1755270553186.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Aug 2025 15:09:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13769124#M85622</guid>
      <dc:creator>brand</dc:creator>
      <dc:date>2025-08-15T15:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: autocad 2025 plugin: Could not load file or assembly 'Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13778888#M85666</link>
      <description>&lt;P&gt;I cant get EF to work either. Not in 2025 or 2026.&amp;nbsp; I don't know when EF got so bloated, but there are about a 'gazzlion'&amp;nbsp;transitive packages referenced and who knows which of them causes the plugin to not load properly.&amp;nbsp; I know it gets into memory&amp;nbsp; but the Initialize method is never called.&amp;nbsp; I guess we should try another ORM, is NHibernate still a thing?&amp;nbsp; I have not done DB in while!&lt;/P&gt;</description>
      <pubDate>Fri, 22 Aug 2025 13:25:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13778888#M85666</guid>
      <dc:creator>oneMSN</dc:creator>
      <dc:date>2025-08-22T13:25:28Z</dc:date>
    </item>
    <item>
      <title>Re: autocad 2025 plugin: Could not load file or assembly 'Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13783500#M85675</link>
      <description>&lt;P&gt;Let's go Madhukar Moogala at Autodesk Platform Services! I submitted a ticket to APS and he found that EF 8.0.19 works in 2025/2026. I've confirmed this with 2025. Here's the pertinent stuff in the .csproj file:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="brand_0-1756219316253.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1564674i2CA128E41A88E6E2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="brand_0-1756219316253.png" alt="brand_0-1756219316253.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I added the package references via NuGet Manager. Note the version numbers, as EF 9.x won't work at this time.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 14:44:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13783500#M85675</guid>
      <dc:creator>brand</dc:creator>
      <dc:date>2025-08-26T14:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: autocad 2025 plugin: Could not load file or assembly 'Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13783758#M85677</link>
      <description>&lt;P&gt;This is my csproj file:&amp;nbsp; Plugin will still not load!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="oneMSN_0-1756226694892.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1564745iE75FB6FCCEEAF6B7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="oneMSN_0-1756226694892.png" alt="oneMSN_0-1756226694892.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I remove 'DbContext' from the code base:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;public class TestContext : DbContext { }&lt;BR /&gt;&lt;BR /&gt;It will load.&amp;nbsp; As soon as I reference DbContext the Plugin will not load, an no errors are present in visual studio.&amp;nbsp; Any thoughts?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've attached the whole test project if anyone is brave enough to test it.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 16:49:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13783758#M85677</guid>
      <dc:creator>oneMSN</dc:creator>
      <dc:date>2025-08-26T16:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: autocad 2025 plugin: Could not load file or assembly 'Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13784511#M85678</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Are the package DLLs copied to the output directory?&lt;/P&gt;</description>
      <pubDate>Wed, 27 Aug 2025 06:41:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13784511#M85678</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2025-08-27T06:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: autocad 2025 plugin: Could not load file or assembly 'Microsoft.Extensions.DependencyInjection.Abstractions, Version=9.0.0.0</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13785358#M85680</link>
      <description>&lt;P&gt;Dang, the Dlls were not being copied,&amp;nbsp; I added '&amp;lt;CopyLocalLockFileAssemblies&amp;gt;true&amp;lt;/CopyLocalLockFileAssemblies&amp;gt; and now I have a working EF plugin. Thanks&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="oneMSN_0-1756308090477.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1565123iA63CCF61DF96ED53/image-size/medium?v=v2&amp;amp;px=400" role="button" title="oneMSN_0-1756308090477.png" alt="oneMSN_0-1756308090477.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Aug 2025 15:22:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-2025-plugin-could-not-load-file-or-assembly-microsoft/m-p/13785358#M85680</guid>
      <dc:creator>oneMSN</dc:creator>
      <dc:date>2025-08-27T15:22:19Z</dc:date>
    </item>
  </channel>
</rss>

