Skyline.DataMiner.Utils.ExportImport
1.0.0
Prefix Reserved
dotnet add package Skyline.DataMiner.Utils.ExportImport --version 1.0.0
NuGet\Install-Package Skyline.DataMiner.Utils.ExportImport -Version 1.0.0
<PackageReference Include="Skyline.DataMiner.Utils.ExportImport" Version="1.0.0" />
paket add Skyline.DataMiner.Utils.ExportImport --version 1.0.0
#r "nuget: Skyline.DataMiner.Utils.ExportImport, 1.0.0"
// Install Skyline.DataMiner.Utils.ExportImport as a Cake Addin #addin nuget:?package=Skyline.DataMiner.Utils.ExportImport&version=1.0.0 // Install Skyline.DataMiner.Utils.ExportImport as a Cake Tool #tool nuget:?package=Skyline.DataMiner.Utils.ExportImport&version=1.0.0
Skyline.DataMiner.Utils.ExportImport
About
About Skyline.DataMiner.Utils.ExportImport Packages
Skyline.DataMiner.Utils.ExportImport Packages are NuGets available in the public nuget store that contain assemblies that enhance development of DataMiner protocols or Automation scripts.
They allow to easily export and import data in a CSV, JSON or XML format.
Warning Prior to DataMiner 10.1.11 (RN 30755), when a .NET Standard 2.0 NuGet is used in a QAction or EXE, you need to manually add a reference to .NET Standard.
<ItemGroup> <Reference Include="netstandard" /> </ItemGroup>
When .NET Framework 4.6.2 is targeted, you will get a warning icon, but this can be ignored.
The following packages are available:
- Skyline.DataMiner.Utils.ExportImport
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.
Requirements
The "DataMiner Integration Studio" Visual Studio extension is required for development of connectors and Automation scripts using NuGets.
See Installing DataMiner Integration Studio
Warning NuGets are mandatory to be installed with PackageReferences. DIS was redesigned to work with PackageReferences and be future-proof.
For more information on how to migrate from packages.config to PackageReferences, see docs.microsoft.com.
Getting started
For reading use your entry point should be:
Reader<DataRow> reader = ReaderFactory.GetReader<DataRow>(filePath);
List<DataRow> rows = reader.Read();
For writing use your entry point should be:
Writer<DataRow> writer = WriterFactory.GetWriter<DataRow>(filePath);
writer.Write(rows);
Based on the file extension (.csv, .json or .xml) it will return the specific reader/writer.
When exporting/importing to CSV, header attributes should be specified to identify either the name of the column or the position of the column. If there are properties that don't need to be included, they can be ignored with an attribute as well.
[CsvHeader("PK")]
public string Index { get; set; }
...
[CsvHeader(1)]
public string Name { get; set; }
...
[CsvIgnore]
public string Extra { get; set; }
Warning Only use either the columns names or the position. If both are used or there are properties without attribute, then a MissingCsvHeaderAttributeWithPositionException will be thrown.
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
- Newtonsoft.Json (>= 13.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 |
---|---|---|
1.0.0 | 8,643 | 3/22/2023 |