Right now I’m writing an automation script for controlling API calls.
I watched a video, installed all the packages shown in it, and made some modifications.
I also added custom libraries via NuGet Package Manager:
main important libraries :
using Newtonsoft.Json.Linq;
using RestSharp;
etc.
However, after publishing and validating in the DataMiner Cube, I get 15 errors saying it can’t resolve the libraries.
How can I fix this? Or are there alternative libraries or functions I can use?
Thanks in advance!
How did you write and publish the script? If it was through DIS it should create an install package and deploy that through DIS.

If you did not publish from DIS. You should add the dll reference in "Advanced" settings.
Example here with Newtonsoft.Json.dll

Had the same problem. Adding the DLL references here in the advance settings fixed it for me. Not sure why DIS doesn't do it for me.
Like in the video, I opened a Visual Studio project for automation and installed the packages using the NuGet manager. How do I get the Skyline Dev package, like in the video?
I will try creating a new project—maybe I skipped a step.
Thanks