ExcelToJsonLibrary 1.0.0
See the version list below for details.
dotnet add package ExcelToJsonLibrary --version 1.0.0
NuGet\Install-Package ExcelToJsonLibrary -Version 1.0.0
<PackageReference Include="ExcelToJsonLibrary" Version="1.0.0" />
paket add ExcelToJsonLibrary --version 1.0.0
#r "nuget: ExcelToJsonLibrary, 1.0.0"
// Install ExcelToJsonLibrary as a Cake Addin #addin nuget:?package=ExcelToJsonLibrary&version=1.0.0 // Install ExcelToJsonLibrary as a Cake Tool #tool nuget:?package=ExcelToJsonLibrary&version=1.0.0
Convert all excel spreadsheet to a json with two lines code. Send the spreadsheet and get the json with columns and values
Code: static void Main(string[] args) { var path = @"C:\Data.xlsx";
var excel = new ExcelToJsonLibrary.ExcelToJson(); var result = excel.GetJson(path, "Sheet1");
Console.WriteLine(result);
Console.ReadLine(); }
C# .NET Visual Studio
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 | netcoreapp3.1 is compatible. |
-
.NETCoreApp 3.1
- Newtonsoft.Json (>= 12.0.3)
- RestSharp (>= 106.11.7)
- ServiceStack.Text (>= 5.10.2)
- System.Data.OleDb (>= 5.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Convert all excel spreadsheet to a json with two lines code.
Send the spreadsheet and get the json with columns and values
Code:
static void Main(string[] args)
{
var path = @"C:\Data.xlsx";
var excel = new ExcelToJsonLibrary.ExcelToJson();
var result = excel.GetJson(path, "Sheet1");
Console.WriteLine(result);
Console.ReadLine();
}