It looks like you need to first do some study on moving your CAD development from Acad2024 or older to Acad2025/2026 (that is, from using .NET Framework 4.x to .NET 8), also be aware, once the project is omved/converted to support .NET 8, the app would not run in Acad 2024 or older.
Again, I repeat, regardless of using VB.NET or C#, the Nuget package for AutoCAD .NET development is not a MUST -HAVE, especially for AutoCAD .NET COM API interop DLLs. If you do not use COM API interop DLL, then, there will be no different from using Nuget package for .NET API dlls for Acad2025, or 2026, against AutoCAD 2026. However, if you do using COM Interop DLLs as references (early binding), then you need set reference to the AutoCAD version you are targeting. In this case, I'll say it one more time: you can set references to the COM Interop DLLs (Autodesk.AutoCAD.Interop.dll/Autodesk.AutoCAD.Interop.common.dll) directly in the AutoCAD installation, or the ones come with ObjectARX SDK, if you downloaded it. Absolutely no need to hold your work to find Nuget package, if you could not find it.
I actually guess that you would have more issues on moving your development project from .NET Framework to .NET 8 in general.
On side note, you may want to drop VB.NET and adopt C# as as soon as possible: MS has stoppedVB.NET advancement since .NET 6 and you would feel more language gaps between VB.NET and C# with later AutoCAD versions (it is possible that next version of AutoCAD might target .NET 10).