SSRS2.NETCore 1.0.2

dotnet add package SSRS2.NETCore --version 1.0.2
                    
NuGet\Install-Package SSRS2.NETCore -Version 1.0.2
                    
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="SSRS2.NETCore" Version="1.0.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SSRS2.NETCore" Version="1.0.2" />
                    
Directory.Packages.props
<PackageReference Include="SSRS2.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 SSRS2.NETCore --version 1.0.2
                    
#r "nuget: SSRS2.NETCore, 1.0.2"
                    
#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 SSRS2.NETCore@1.0.2
                    
#: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=SSRS2.NETCore&version=1.0.2
                    
Install as a Cake Addin
#tool nuget:?package=SSRS2.NETCore&version=1.0.2
                    
Install as a Cake Tool

SSRS2.NETCore

Cross-platform RDLC/PDF engine for .NET 8, 9, and 10. Generate PDF, Excel, Word, HTML, and image reports from RDLC files on Windows, Linux, macOS, Docker, and cloud environments.

Installation

dotnet add package SSRS2.NETCore

Basic Usage

using SSRS2.Reporting.NETCore;

// Load report definition
Stream reportDefinition; // your RDLC from file or resource
IEnumerable dataSource;  // your data source for the report

LocalReport report = new LocalReport();
report.LoadReportDefinition(reportDefinition);
report.DataSources.Add(new ReportDataSource("DataSet1", dataSource));
report.SetParameters(new[] { new ReportParameter("Parameter1", "value") });

// Render to PDF
byte[] pdf = report.Render("PDF");

// Render to other formats
byte[] excel = report.Render("EXCELOPENXML");  // .xlsx
byte[] word = report.Render("WORDOPENXML");    // .docx
byte[] html = report.Render("HTML5");          // .html
byte[] png = report.Render("PNG");             // .png

Supported Export Formats

Format Render String Extension
PDF "PDF" .pdf
Excel "EXCELOPENXML" .xlsx
Word "WORDOPENXML" .docx
HTML5 "HTML5" .html
PNG "PNG" .png
JPEG "JPEG" .jpg
WebP "WEBP" .webp
CSV "CSV" .csv
XML "XML" .xml

Platform Support

  • Windows x64
  • Linux x64 (Ubuntu, Debian, Alpine)
  • Linux ARM64 (Graviton, Raspberry Pi)
  • macOS (Intel & Apple Silicon)
  • Docker & Kubernetes
  • Azure App Service / AWS ECS / Google Cloud Run

Documentation

For detailed documentation and licensing information, visit ssrs2.net

Product 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 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. 
.NET Framework net472 is compatible.  net48 is compatible.  net481 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
1.0.2 115 2/10/2026
1.0.1 91 2/10/2026