Nuget Package for .NET DLLs
I am currently estimating the effort for switching from AutoCAD to BricsCad for one of our SW applications. We've used AutoCAD .NetFramework API in the past and used the nuget packages provided by AutoDesk. I didn't find those for BricsCAD v25. Within our build pipeline we don't have BricsCAD installed and our idea is to have isolated build environments that rely on Nuget only.
Therefore I created a custom nuget package with the two "main" dlls "BrxMgd.dll" and "TD_Mgd.dll" included. But I guess this is not enough, I receive several dependency errors (dlls and tx files) when compiling.
Comments
-
That's because there's a difference between compiling and having intellisense in your IDE
Those DLLs you've mentioned are indeed the ones that you program against
They on their own however require additional DLLs and tx files to be present alongside those dlls.
Best bet would be to launch your plugin via Visual Studio start debugging and then have a look at your modules window to see which dlls have all been loaded.
Or just go with trial & error.
Build and add the files it complains about to the package, rinse and repeat.
Feel free to post back the full list one you have it :D0