SealReportLibrary.NETCore 10.0.0

dotnet add package SealReportLibrary.NETCore --version 10.0.0
                    
NuGet\Install-Package SealReportLibrary.NETCore -Version 10.0.0
                    
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="SealReportLibrary.NETCore" Version="10.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SealReportLibrary.NETCore" Version="10.0.0" />
                    
Directory.Packages.props
<PackageReference Include="SealReportLibrary.NETCore" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add SealReportLibrary.NETCore --version 10.0.0
                    
#r "nuget: SealReportLibrary.NETCore, 10.0.0"
                    
#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.
#:package SealReportLibrary.NETCore@10.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=SealReportLibrary.NETCore&version=10.0.0
                    
Install as a Cake Addin
#tool nuget:?package=SealReportLibrary.NETCore&version=10.0.0
                    
Install as a Cake Tool

Seal Report Library

Seal Report & Task is a complete open source framework for producing reports from any database or NoSQL source, and for performing complex tasks (ETL, batch). Entirely written in C# for Microsoft .NET, and free for everyone under the MIT License.

This package provides the objects to create, load and execute Seal reports from your own .NET application.

A full Seal Report repository (file structure with sources, connections, templates and settings) must be available on the machine running the program. Install Seal Report or copy a repository folder to get started.

Basic usage

Execute an existing report and generate its HTML result:

using Seal.Model;

// Load the repository (path from appsettings.json or set Repository.RepositoryConfigurationPath)
Repository repository = Repository.Create();

// Load and execute a report
Report report = Report.LoadFromFile(@"C:\Seal\Reports\Sales.srex", repository);
report.ExecutionContext = ReportExecutionContext.TaskScheduler;
var execution = new ReportExecution() { Report = report };
execution.Execute();
while (report.IsExecuting) System.Threading.Thread.Sleep(100);
if (report.HasErrors) throw new Exception(report.ExecutionErrors);

// Generate the self-contained HTML result file
string resultPath = execution.GenerateHTMLResult();

Reports can also be created from scratch, modified, rendered in other formats (Excel, PDF, CSV, JSON, XML, Text) or scheduled — see the documentation for more samples.

Main features of Seal Report

  • Dynamic SQL sources: use your own SQL, or let the Seal engine build the SQL dynamically.
  • LINQ queries: join and query any data sources (SQL, Excel, XML, OLAP Cube, HTTP JSON, etc.).
  • Native pivot tables and HTML5 charts (ChartJS, ECharts, Plotly, ScottPlot, Gauge).
  • AI Agents: chat with role-based AI agents to design reports or analyze data, using your own provider (OpenAI, Azure OpenAI, Anthropic or Ollama).
  • Fully responsive HTML rendering with the Razor engine, plus Excel and PDF results.
  • Web Report Server (Windows and Linux) and Report Scheduler.
  • Report tasks & ETL for batch operations, and native support of MongoDB.

License

Seal Report is free and open source under the MIT License. Third-party components are distributed under their own licenses, see THIRD-PARTY-NOTICES.md (in particular QuestPDF and EPPlus if your own code calls their APIs directly).

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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. 
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
10.0.0 0 7/16/2026
8.5.0 482 4/3/2026
8.4.0 648 10/11/2025
8.3.1 1,024 5/8/2025
8.3.0.2 297 5/4/2025
8.2.1 342 1/28/2025
8.1.1 1,633 9/3/2024
8.1.0 341 9/2/2024
8.0.1 653 3/21/2024
8.0.0 332 3/7/2024
7.2.1 591 12/20/2023
7.2.0 388 12/12/2023
7.1.0 362 10/26/2023
7.0.0 648 7/19/2023
6.9.3 5,590 3/16/2023
6.9.2 681 3/14/2023
6.9.1 681 3/14/2023
6.9.0 680 3/1/2023
Loading failed