Skyline.DataMiner.CICD.DMApp.Dashboard
2.0.3
Prefix Reserved
dotnet add package Skyline.DataMiner.CICD.DMApp.Dashboard --version 2.0.3
NuGet\Install-Package Skyline.DataMiner.CICD.DMApp.Dashboard -Version 2.0.3
<PackageReference Include="Skyline.DataMiner.CICD.DMApp.Dashboard" Version="2.0.3" />
paket add Skyline.DataMiner.CICD.DMApp.Dashboard --version 2.0.3
#r "nuget: Skyline.DataMiner.CICD.DMApp.Dashboard, 2.0.3"
// Install Skyline.DataMiner.CICD.DMApp.Dashboard as a Cake Addin #addin nuget:?package=Skyline.DataMiner.CICD.DMApp.Dashboard&version=2.0.3 // Install Skyline.DataMiner.CICD.DMApp.Dashboard as a Cake Tool #tool nuget:?package=Skyline.DataMiner.CICD.DMApp.Dashboard&version=2.0.3
Skyline.DataMiner.CICD.Packages
About
About Skyline.DataMiner.CICD.Packages packages
Skyline.DataMiner.CICD.Packages packages are NuGet packages available in the public nuget store that contain assemblies that enhance the CICD experience.
The following packages are available:
- Skyline.DataMiner.CICD.DMApp.Automation
- Skyline.DataMiner.CICD.DMApp.Common
- Skyline.DataMiner.CICD.DMApp.Dashboard
- Skyline.DataMiner.CICD.DMApp.Visio
- Skyline.DataMiner.CICD.DMProtocol
Depending on the chosen NuGet, these libraries will provide the ability to easily convert from a DIS-provided Visual Studio Solution of your chosen type into either a .dmapp or .dmprotocol file. These files can then be installed on a DataMiner system.
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 Packages to build you own connectors (also known as "protocols" or "drivers").
Note 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
The code is loosely based on the Builder design pattern. You can create a builder object using one of the provided static Factory classes:
var builder = await ProtocolPackageCreator.Factory.FromRepositoryAsync(logCollector, repositoryPath);
var builder = AppPackageCreatorForVisio.Factory.FromRepository(logCollector, repositoryPath, packageName, packageVersion);
var builder = AppPackageCreatorForDashboard.Factory.FromRepository(logCollector, repositoryPath, packageName, packageVersion);
var builder = AppPackageCreatorForAutomation.Factory.FromRepository(logCollector, repositoryPath, packageName, packageVersion);
In most cases you don't need to add or configure additional things to the builders, they will contain all necessary information. To actually create the .dmapp or .dmprotocol on your system you can call:
await builder.CreateAsync(destinationFolder, packageFileName);
There is also an option to create the package in memory and return the byte array.
byte[] package = builder.CreateAsync():
And lastly there is also an option to return an IAppPackage object that represents the package, allowing validation of all assemblies, scripts, ... before creating the .dmapp file.
var package = await creator.BuildPackageAsync();
package.CreatePackage(destinationFilePath);
Complete Example:
ILogCollector logCollector = new LogCollector();
string repositoryPath = @"C:\GITHUB\SLC-AS-EmpowerDemo1Room0";
string packageName = "EmpowerDemo1Room0";
var packageVersion = DMAppVersion.FromProtocolVersion("1.0.0.1");
string destinationFolder = @"C:\MyPackages\"
string packageFileName = "EmpowerDemo1Room0.dmapp";
var builder = AppPackageCreatorForAutomation.Factory.FromRepository(logCollector, repositoryPath, packageName, packageVersion);
await builder.CreateAsync(destinationFolder, packageFileName);
Advanced Usage
You can also use these libraries, combined with the Skyline.DataMiner.Core.AppPackageCreator NuGet to create advanced packages containing multiple scripts, connectors, visio's, dashboards or other files.
Start by creating a new AppPackageBuilder
var appPackageBuilder = new AppPackage.AppPackageBuilder(PackageName, PackageVersion.ToString(), GlobalDefaults.MinimumSupportDataMinerVersionForDMApp);
You can now create one or more of the builders as shown in Getting Started(### Getting Started)
Those builders can then be asked to add their contents to your appPackageBuilder like so:
builder.AddItemsAsync(appPackageBuilder);
You can also add other things to the appPackageBuilder itself at this point. Like additional files or other artifacts.
Once you've added all items from the individual builders to the appPackageBuilder you can create an object representing your complete package. This allows for final validation if needed.
var appPackage = appPackageBuilder.Build();
You can now create the .dmapp file.
package.CreatePackage(destinationFilePath);
Complete Example:
string packageName = "EmpowerDemoRoom0";
string destinationFilePath = @"C:\MyPackages\EmpowerDemoRoom0.dmapp";
var packageVersion = DMAppVersion.FromProtocolVersion("1.0.0.1");
ILogCollector logCollector = new LogCollector();
string repositoryPath1 = @"C:\GITHUB\SLC-AS-EmpowerDemo1Room0";
string childPackageName1 = "EmpowerDemo1Room0.dmapp";
string repositoryPath2 = @"C:\GITHUB\SLC-AS-EmpowerDemo2Room0";
string childPackageName2 = "EmpowerDemo2Room0.dmapp";
var appPackageBuilder = new AppPackage.AppPackageBuilder(packageName, packageVersion.ToString(), GlobalDefaults.MinimumSupportDataMinerVersionForDMApp);
var builder1 = AppPackageCreatorForAutomation.Factory.FromRepository(logCollector, repositoryPath1, childPackageName1, packageVersion);
var builder2 = AppPackageCreatorForAutomation.Factory.FromRepository(logCollector, repositoryPath2, childPackageName2, packageVersion);
builder1.AddItemsAsync(appPackageBuilder);
builder2.AddItemsAsync(appPackageBuilder);
var appPackage = appPackageBuilder.Build();
package.CreatePackage(destinationFilePath);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Skyline.DataMiner.CICD.DMApp.Common (>= 2.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.3 | 94 | 9/3/2024 |
2.0.2 | 101 | 8/26/2024 |
2.0.1 | 113 | 8/19/2024 |
2.0.1-alpha2 | 92 | 8/19/2024 |
2.0.1-Alpha1 | 101 | 8/19/2024 |
1.1.7 | 123 | 4/5/2024 |
1.1.6 | 100 | 3/15/2024 |
1.1.5 | 122 | 3/13/2024 |
1.1.4 | 124 | 2/9/2024 |
1.1.3 | 102 | 2/5/2024 |
1.1.2 | 115 | 1/22/2024 |
1.1.1 | 110 | 1/17/2024 |
1.1.0 | 155 | 12/22/2023 |
1.0.10 | 127 | 12/13/2023 |
1.0.9 | 138 | 11/30/2023 |
1.0.8 | 131 | 11/29/2023 |
1.0.7 | 118 | 11/27/2023 |
1.0.6 | 134 | 11/20/2023 |
1.0.5 | 126 | 11/15/2023 |
1.0.4 | 138 | 10/31/2023 |
1.0.3 | 154 | 10/24/2023 |
1.0.2.4 | 142 | 10/20/2023 |
1.0.2.3 | 139 | 10/18/2023 |
1.0.2.2 | 159 | 10/5/2023 |
1.0.2.1 | 120 | 9/26/2023 |
1.0.1.10 | 135 | 9/13/2023 |
1.0.1.9 | 202 | 8/1/2023 |
1.0.1.8 | 148 | 7/31/2023 |
1.0.1.7 | 157 | 7/31/2023 |
1.0.1.6 | 169 | 7/28/2023 |
1.0.1.5 | 191 | 7/28/2023 |
1.0.1.4 | 166 | 7/14/2023 |
1.0.1.2 | 173 | 7/4/2023 |
1.0.1.1 | 168 | 7/3/2023 |
1.0.0.20 | 153 | 6/26/2023 |
1.0.0.19 | 152 | 6/21/2023 |
1.0.0.18 | 167 | 6/6/2023 |
1.0.0.17 | 190 | 4/27/2023 |
1.0.0.16 | 189 | 4/25/2023 |
1.0.0.15 | 189 | 4/24/2023 |
1.0.0.14 | 208 | 4/6/2023 |
1.0.0.13 | 213 | 4/5/2023 |
1.0.0.12 | 218 | 4/4/2023 |
1.0.0.11 | 268 | 3/17/2023 |
1.0.0.10 | 242 | 3/13/2023 |
1.0.0.9 | 282 | 2/10/2023 |
1.0.0.8 | 298 | 2/8/2023 |
1.0.0.7 | 284 | 2/8/2023 |
1.0.0.6 | 286 | 2/6/2023 |
1.0.0.5 | 283 | 2/1/2023 |
1.0.0.4 | 328 | 1/4/2023 |
1.0.0.3 | 339 | 12/19/2022 |
1.0.0.2 | 325 | 12/14/2022 |
1.0.0.1 | 303 | 12/8/2022 |