OkEPPlus 8.1.1
dotnet add package OkEPPlus --version 8.1.1
NuGet\Install-Package OkEPPlus -Version 8.1.1
<PackageReference Include="OkEPPlus" Version="8.1.1" />
<PackageVersion Include="OkEPPlus" Version="8.1.1" />
<PackageReference Include="OkEPPlus" />
paket add OkEPPlus --version 8.1.1
#r "nuget: OkEPPlus, 8.1.1"
#:package OkEPPlus@8.1.1
#addin nuget:?package=OkEPPlus&version=8.1.1
#tool nuget:?package=OkEPPlus&version=8.1.1
EPPlus 8
License
EPPlus 8 has a dual license model with a community license for noncommercial use: Polyform Noncommercial 1.0.0.
With this license EPPlus is free to use for personal or noncommercial use, but will require a commercial license to be used in a commercial business.
Commercial licenses, which includes support, can be purchased at (https://www.epplussoftware.com/).
The source code for EPPlus is available at EPPlus Software's github repository
License parameter must be set
Before using EPPlus 8, you must specify the license to use. This is done via the License property of the ExcelPackage class
For commercial use, you use the License.SetCommercial(string), with your license key as argument. Your license key is available on your license, under the section "My Licenses" on our website.
For noncommercial use, you set the License.SetNonCommercialOrganization(string) or License.SetNonCommercialPersonal(string) with the name as argument. Noncommercial use will reserve the Comment and Tag field of the package for license information and add a license file within the package.
You can also configure these settings in the configuration files or in an environment varialble:
1. Via code
// If you are a commercial business and have
// purchased commercial licenses use the static property
// LicenseContext of the ExcelPackage class :
ExcelPackage.License.SetCommercial("<Your License Key here>");
// If you use EPPlus in a noncommercial context
// according to the Polyform Noncommercial license:
ExcelPackage.License.SetNonCommercialPersonal("<Your Name>");
//or..
ExcelPackage.License.SetNonCommercialOrganization("<Your Noncommercial Organization>");
using(var package = new ExcelPackage(new FileInfo("MyWorkbook.xlsx")))
{
}
2. Via appSettings.json
{
{
"EPPlus": {
"ExcelPackage": {
"License": "Commercial:<Your License Key here>" //The license context used
}
}
}
}
3. Via app/web.config
<appSettings>
<add key="EPPlus:ExcelPackage.License" value="NonCommercialPersonal:Your Name" /> //..or use "NonCommercialOrganization:Your Organizations name"
</appSettings>
4. Set the environment variable 'EPPlusLicenseContext'
This might be the easiest way of configuring this. Just as above, set the variable EPPlusLicense.
New features in EPPlus 8
- Support for OLE objects (Linked or Embedded files).
- Support for digital signing workbooks and signature lines.
- In-cell pictures / support for the IMAGE function.
- Sensitivity Label API to integrate with MIP (Microsoft Information Protection SDK).
- Many minor features and bug fixes.
Breaking Changes
See https://github.com/EPPlusSoftware/EPPlus/wiki/Breaking-Changes-in-EPPlus-8
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. 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. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Framework | net35 is compatible. net40 was computed. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETFramework 3.5
- No dependencies.
-
.NETFramework 4.6.2
- Microsoft.IO.RecyclableMemoryStream (>= 3.0.1)
- System.ComponentModel.Annotations (>= 5.0.0)
- System.Security.Cryptography.Xml (>= 8.0.2)
-
net8.0
- Microsoft.IO.RecyclableMemoryStream (>= 3.0.1)
- System.ComponentModel.Annotations (>= 5.0.0)
- System.Security.Cryptography.Pkcs (>= 8.0.1)
- System.Security.Cryptography.Xml (>= 8.0.2)
- System.Text.Encoding.CodePages (>= 8.0.0)
-
net9.0
- Microsoft.IO.RecyclableMemoryStream (>= 3.0.1)
- System.ComponentModel.Annotations (>= 5.0.0)
- System.Security.Cryptography.Pkcs (>= 9.0.3)
- System.Security.Cryptography.Xml (>= 9.0.3)
- System.Text.Encoding.CodePages (>= 9.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.