All Projects → EPPlusSoftware → Epplus

EPPlusSoftware / Epplus

Licence: other
EPPlus 5-Excel spreadsheets for .NET

Projects that are alternatives of or similar to Epplus

EPPlus4PHP
an easy-to-use excel library for php project which is compiled with peachpie. NOT FOR THE COMMON PHP PROJECT!
Stars: ✭ 15 (-97.84%)
Mutual labels:  excel, spreadsheet, netcore, netstandard
Singularity
A extremely fast ioc container for high performance applications
Stars: ✭ 63 (-90.91%)
Mutual labels:  netstandard, netcore, net
Raft.net
Implementation of RAFT distributed consensus algorithm among TCP Peers on .NET / .NETStandard / .NETCore / dotnet
Stars: ✭ 112 (-83.84%)
Mutual labels:  netstandard, netcore, net
Dbreeze
C# .NET MONO NOSQL ( key value store embedded ) ACID multi-paradigm database management system.
Stars: ✭ 383 (-44.73%)
Mutual labels:  netstandard, netcore, net
Filecontextcore
FileContextCore is a "Database"-Provider for Entity Framework Core and adds the ability to store information in files instead of being limited to databases.
Stars: ✭ 91 (-86.87%)
Mutual labels:  excel, netcore, net
NETProvider
Firebird ADO.NET Data Provider
Stars: ✭ 113 (-83.69%)
Mutual labels:  netcore, net, netstandard
DotNetDynamicInjector
💉 Dynamically reference external dlls without the need to add them to the project. Leave your project with low dependency and allowing specific dlls according to your business rule or database parameters.
Stars: ✭ 18 (-97.4%)
Mutual labels:  netcore, net, netstandard
React Spreadsheet
Simple, customizable yet performant spreadsheet for React
Stars: ✭ 393 (-43.29%)
Mutual labels:  excel, spreadsheet
Networker
A simple to use TCP and UDP networking library for .NET. Compatible with Unity.
Stars: ✭ 408 (-41.13%)
Mutual labels:  netstandard, netcore
Dataproofer
A proofreader for your data
Stars: ✭ 628 (-9.38%)
Mutual labels:  excel, spreadsheet
Zkweb
A flexible web framework supports .Net Framework and .Net Core
Stars: ✭ 475 (-31.46%)
Mutual labels:  netcore, net
Autofac
An addictive .NET IoC container
Stars: ✭ 3,713 (+435.79%)
Mutual labels:  netstandard, netcore
Nghandsontable
Official AngularJS directive for Handsontable
Stars: ✭ 438 (-36.8%)
Mutual labels:  excel, spreadsheet
Docjure
Read and write Office documents from Clojure
Stars: ✭ 510 (-26.41%)
Mutual labels:  excel, spreadsheet
Gofer.net
Easy C# API for Distributed Background Tasks/Jobs for .NET Core.
Stars: ✭ 383 (-44.73%)
Mutual labels:  netstandard, netcore
Bcrypt.net
BCrypt.Net - Bringing updates to the original bcrypt package
Stars: ✭ 422 (-39.11%)
Mutual labels:  netcore, net
J
❌ Multi-format spreadsheet CLI (now merged in http://github.com/sheetjs/js-xlsx )
Stars: ✭ 343 (-50.51%)
Mutual labels:  excel, spreadsheet
Bootstrapping Calculator
Do you have enough savings to fund your business?
Stars: ✭ 465 (-32.9%)
Mutual labels:  excel, spreadsheet
Formula Parser
Javascript Library parsing Excel Formulas and more
Stars: ✭ 544 (-21.5%)
Mutual labels:  excel, spreadsheet
Reogrid
Fast and powerful .NET spreadsheet component, support data format, freeze, outline, formula calculation, chart, script execution and etc. Compatible with Excel 2007 (.xlsx) format and working on .NET 3.5 (or client profile), WPF and Android platform.
Stars: ✭ 532 (-23.23%)
Mutual labels:  excel, spreadsheet

Download EPPlus from nuget Build status

EPPlus 5

Announcement: new license model from version 5

EPPlus has from this new major version changed license from LGPL to Polyform Noncommercial 1.0.0.

With the new license EPPlus is still free to use in some cases, but will require a commercial license to be used in a commercial business.

This is explained in more detail here.

Commercial licenses, which includes support, can be purchased at https://www.epplussoftware.com/.

LicenseContext parameter must be set

With the license change EPPlus has a new parameter that needs to be configured. If the LicenseContext is not set, EPPlus will throw a LicenseException (only in debug mode).

This is a simple configuration that can be set in a few alternative ways:

1. Via code

// If you are a commercial business and have
// purchased commercial licenses use the static property
// LicenseContext of the ExcelPackage class :
ExcelPackage.LicenseContext = LicenseContext.Commercial;

// If you use EPPlus in a noncommercial context
// according to the Polyform Noncommercial license:
ExcelPackage.LicenseContext = LicenseContext.NonCommercial;

using(var package = new ExcelPackage(new FileInfo("MyWorkbook.xlsx")))
{

}

2. Via appSettings.json

  {
    "EPPlus": {
      "ExcelPackage": {
          "LicenseContext": "Commercial"
          }
      }
  }

3. Via app/web.config

<appSettings>
    <!--The license context used-->
    <add key="EPPlus:ExcelPackage.LicenseContext" value="NonCommercial" />
</appSettings>

4. Set the environment variable 'EPPlusLicenseContext'

This might be the easiest way of configuring this. Just as above, set the variable to Commercial or NonCommercial depending on your usage.

Important! The environment variable should be set at the user level.

New features in EPPlus 5

EPPlus 5 comes with a set of new features, see https://www.epplussoftware.com/Developers/Features

Breaking Changes

  • The default behavior for the Worksheet collection base in .NET Framework has changed from 1 to 0. This is the same default behavior as in .NET core today.
  • Pictures have changed the behavior as the oneCellAnchor tag is used instead of the twoCellAnchor tag with the editAs="oneCell".
  • ...and more, see https://epplussoftware.com/docs/5.2/articles/breakingchanges.html

Improved documentation

EPPlus 5 has new, separate sample projects for .NET Core and .NET Framework respectively. There is also an updated developer wiki. The work with improving the documentation will continue, feedback is highly appreciated!

Nuget feed for latest builds

The latest builds from the EPPlus develop branch can be fetched from this Nuget feed

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].