Xceed.Workbooks.NET 3.0.25458.6676

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

Xceed Workbooks for .NET – Spreadsheet Creation & Excel File Processing for .NET

Xceed Workbooks for .NET is a high-performance .NET library designed for creating, loading, editing, and saving Excel workbooks and spreadsheet files — without needing Microsoft Excel or Office interop.

It gives developers full control over workbook structure, content, formatting, and export — through a simple, intuitive API.

Xceed.Workbooks.NET

Click the image above to receive a trial license. It unlocks all features of the component. See the Get Started section below for details.

Brought to you by Xceed Software, a leader in .NET components for over 25 years.


Features

Spreadsheet Generation & Processing

  • Create Excel workbooks from scratch
  • Load .xlsx files
  • Edit cell values, formulas, formats, and styles
  • Insert, copy, move, and delete worksheets
  • Apply borders, fills, and alignments
  • Set column widths, row heights, and merge cells
  • Protect sheets and lock/unlock specific ranges

Export & Save Options

  • Save as .xlsx
  • Export for use in Microsoft Excel and other spreadsheet apps
  • Stream to memory or save directly to disk

Performance

  • Optimized for high-speed data manipulation
  • Lightweight and dependency-free

Compatibility

  • .NET Framework 4.0 and later

  • .NET 5 and later

  • .NET Standard 2.0 and later

  • Runs on Windows, macOS, and Linux

  • Works in desktop, web, and cloud environments

  • Integrates with ASP.NET, Blazor, and Xamarin applications


Supported File Formats

Read & Write

  • .xlsx – Microsoft Excel Open XML

Convert Workbooks To

  • .xlsx – Microsoft Excel Open XML

Feature Overview

Feature Description
Create Workbooks Build Excel files entirely in code
Load Existing Files Open .xlsx for editing
Edit Cells Modify values, apply formulas, and format numbers
Style Content Customize borders, fonts, fills, and alignment
Manage Sheets Add, remove, rename, and reorder sheets
Merge Cells Merge and unmerge cell ranges
Cell Protection Lock/unlock specific cells and protect entire worksheets
Auto-Size Columns Automatically adjust column widths based on content
Streaming Support Stream workbooks to memory or disk efficiently

Get Started

Xceed Workbooks for .NET gives you the building blocks to create and manipulate Excel workbooks and spreadsheets using code.

Install via NuGet:

dotnet add package Xceed.Workbooks.NET

Add the license key in your application code:

static void Main( string[] args )
{
  Xceed.Workbooks.NET.Licenser.LicenseKey = "WBNXX-XXXXX-XXXXX-XXXX";
  Console.WriteLine( "Hello World!" );
}

Read the full documentation licensing article here.

Code Example

using Xceed.Workbooks.NET;

// Create a new workbook
var workbook = new Workbook();

// Add a worksheet
var sheet = workbook.AddWorksheet("Inventory");

// Set header row
sheet.Cells[0, 0].Value = "Item";
sheet.Cells[0, 1].Value = "Quantity";
sheet.Cells[0, 2].Value = "Price";

// Add some data
sheet.Cells[1, 0].Value = "Keyboard";
sheet.Cells[1, 1].Value = 10;
sheet.Cells[1, 2].Value = 49.99;

sheet.Cells[2, 0].Value = "Mouse";
sheet.Cells[2, 1].Value = 20;
sheet.Cells[2, 2].Value = 19.99;

// Save to file
workbook.Save("inventory.xlsx");

Resources and Documentations

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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 was computed.  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 net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Xceed.Workbooks.NET:

Package Downloads
Xceed.Products.Documents.Libraries.Full

Create or manipulate Microsoft Word documents or Excel documents from your .NET applications, without requiring Word, Excel or Office to be installed. Word documents can be converted to PDF(not all Word elements are supported). Fast and lightweight. Widely used and backed by a responsive support and development team whose sole ambition is your complete satisfaction. You can try Words for .NET and Workbooks for .NET for free for 45 days, after which you will need to purchase a license key to continue using it.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.25458.6676 1,306 9/8/2025
3.0.25228.6154 1,744 4/28/2025
2.0.25103.5784 9,330 2/4/2025
2.0.25103.5744 287 2/3/2025
1.4.24152.1219 26,709 3/4/2024
1.4.23523.1209 5,089 10/25/2023
1.4.23177.2123 5,130 4/3/2023
1.3.22471.15220 3,398 10/6/2022
1.2.22263.20500 14,375 5/14/2022
1.1.22101.20240 5,195 2/4/2022
1.0.21565.13360 2,996 11/15/2021

See Xceed Workbooks for .NET web site for complete release notes: https://xceed.com/en/our-products/product/workbooks-for-net