Skyline.DataMiner.Utils.SoftwareBundles
1.0.1
Prefix Reserved
See the version list below for details.
dotnet add package Skyline.DataMiner.Utils.SoftwareBundles --version 1.0.1
NuGet\Install-Package Skyline.DataMiner.Utils.SoftwareBundles -Version 1.0.1
<PackageReference Include="Skyline.DataMiner.Utils.SoftwareBundles" Version="1.0.1" />
paket add Skyline.DataMiner.Utils.SoftwareBundles --version 1.0.1
#r "nuget: Skyline.DataMiner.Utils.SoftwareBundles, 1.0.1"
// Install Skyline.DataMiner.Utils.SoftwareBundles as a Cake Addin #addin nuget:?package=Skyline.DataMiner.Utils.SoftwareBundles&version=1.0.1 // Install Skyline.DataMiner.Utils.SoftwareBundles as a Cake Tool #tool nuget:?package=Skyline.DataMiner.Utils.SoftwareBundles&version=1.0.1
Skyline.DataMiner.ConnectorAPI.Arista.Manager
About
About Skyline.DataMiner.Utils.SoftwareBundle
Skyline.DataMiner.Utils.SoftwareBundle is a package available in the public nuget store that contain assemblies to manage bundled sets of files with versioning.
About DataMiner
DataMiner is a transformational platform that provides vendor-independent control and monitoring of devices and services. Out of the box and by design, it addresses key challenges such as security, complexity, multi-cloud, and much more. It has a pronounced open architecture and powerful capabilities enabling users to evolve easily and continuously.
The foundation of DataMiner is its powerful and versatile data acquisition and control layer. With DataMiner, there are no restrictions to what data users can access. Data sources may reside on premises, in the cloud, or in a hybrid setup.
A unique catalog of 7000+ connectors already exist. In addition, you can leverage DataMiner Development SoftwareBundles to build you own connectors (also known as "protocols" or "drivers").
[!TIP] See also: About DataMiner
About Skyline Communications
At Skyline Communications, we deal in world-class solutions that are deployed by leading companies around the globe. Check out our proven track record and see how we make our customers' lives easier by empowering them to take their operations to the next level.
Getting started
You will need to add the following NuGet packages to your automation project from the public nuget store:
- Skyline.DataMiner.Utils.SoftwareBundle
Example code could look as following:
namespace Examples
{
using System;
using NuGet.Versioning;
using Skyline.DataMiner.Utils.SoftwareBundle;
public class ExampleClass
{
public void ReadAllFromSoftwareBundle()
{
string softwareBundleLocation = @"TestSoftwareBundles\zippedSoftwareBundle.zip";
string folderLocation = @"TestSoftwareBundles\UnzippedFolder";
var zippedSoftwareBundle = SoftwareBundles.GetZippedSoftwareBundle(softwareBundleLocation);
if (zippedSoftwareBundle.SoftwareBundleInfo.Version < new SemanticVersion(2, 0, 0))
{
throw new NotSupportedException("SoftwareBundles older than 2.0.0 are not supported");
}
var unzippedSoftwareBundle = zippedSoftwareBundle.CreateUnzippedSoftwareBundle(folderLocation);
foreach (var file in unzippedSoftwareBundle.GetFiles())
{
System.IO.File.ReadAllText(file);
}
}
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETFramework 4.6.2
- Newtonsoft.Json (>= 13.0.3)
- NuGet.Versioning (>= 6.7.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Skyline.DataMiner.Utils.SoftwareBundles:
Package | Downloads |
---|---|
Skyline.DataMiner.Utils.Linux
Linux class library that contains assemblies to communicate with a Linux server in DataMiner. |
GitHub repositories
This package is not used by any popular GitHub repositories.