I am trying to work with some of the MediaOps scripts in Visual Studio and DIS and I cannot get the NUGet packages that are required as they are failing
using Skyline.DataMiner.MediaOps.Communication.ScriptData;
using Skyline.DataMiner.Utils.MediaOps.Common.Take.ScriptData;
using Skyline.DataMiner.Utils.MediaOps.Common.Utils;
I am trying to get the package Skyline.DataMiner.Utils.MediaOps.Common
but Nuget is failing with
Unable to find package Skyline.DataMiner.Utils.ScriptPerformanceLogger. No packages exist with this id in source(s): Microsoft Visual Studio Offline Packages, nuget.org
I also notice that Skyline.DataMiner.Utils.MediaOps.Common is deprecated as it is no longer maintained.
Is MediaOPs going to be maintained in future as I don't want to build on something that will not be maintained.
Thanks
Mark
Hi Mark,
Could you please indicate which MediaOps version you are using? You can find this by going to any of the MediaOps applications and going to the last page with the 'info' icon (for example: MediaOps version 1.3.1 is being used in the screenshot below).
It could also help to get some context on what you are trying to achieve with the scripts you're building. It's definitely the case that the MediaOps apps will be maintained and supported going forward, but we're still working on adding helper classes for people to leverage MediaOps functionalities in custom scripts.

Are these automation scripts supposed to apply configuration on devices for scheduled events? Because if it's only about scheduling an automation script to run at a given time, MediaOps might not be the perfect fit for your use case.
Hi Reinout,
The version is 1.3.1. which I have just deployed from the Catalog in the last few days.
I was looking at the existing scripts (Workflow.Connection.Default) in order to understand how to develop custom scripts that will be linked to the connections in a workflow for a custom application. I imported it into Visual Studio but got lots of red errors which I was unable to fix by getting the required Nuget packages. I am trying to evaluate the use of MediaOps as an alternative to just building and scheduling custom automation scripts in cube which is what I have done previously.