ExporterWordExcelPDF 1.0.0.8

There is a newer version of this package available.
See the version list below for details.
dotnet add package ExporterWordExcelPDF --version 1.0.0.8
NuGet\Install-Package ExporterWordExcelPDF -Version 1.0.0.8
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ExporterWordExcelPDF" Version="1.0.0.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ExporterWordExcelPDF --version 1.0.0.8
#r "nuget: ExporterWordExcelPDF, 1.0.0.8"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ExporterWordExcelPDF as a Cake Addin
#addin nuget:?package=ExporterWordExcelPDF&version=1.0.0.8

// Install ExporterWordExcelPDF as a Cake Tool
#tool nuget:?package=ExporterWordExcelPDF&version=1.0.0.8

Export to Excel,Word , Pdf, Html,CSV
 The data could be a C# class or a JSON/CSV string
 Examples:

 export=new ExportExcel2007<Person>
 ();
 data = export.ExportResult(new List<Person>() { p });
           File.WriteAllBytes("a.xlsx", data);
           Process.Start("a.xlsx");


data= ExportFactory.ExportDataJson(dataJson, ExportToFormat.Excel2007);
           File.WriteAllBytes("bJson.xlsx", data);
           Process.Start("bJson.xlsx");

 More details/code at https://ignatandrei.github.io/Exporter/

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.1 18,066 2/14/2016
1.0.0.8 1,770 2/4/2016
1.0.0.7 1,124 1/24/2016
1.0.0.6 1,003 1/24/2016
1.0.0.5 1,006 1/24/2016
1.0.0.4 1,015 1/21/2016
1.0.0.3 1,001 1/18/2016
1.0.0.2 1,052 1/10/2016
1.0.0.1 1,073 1/6/2016
1.0.0 1,406 1/5/2016

added dataset and more