GroupDocs.Assembly.Net100 26.6.0

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

.NET API for Document Assembly

Package version Package downloads .NET

banner

Product Page | Docs | Demo | API Reference | Examples | Blog | Releases | Free Support | Temporary License

An on-premise API to generate documents of various formats based on user-defined templates as well as from other data sources, such as XML, OData, JSON, etc.

Document Assembly Processing Features

  • Support for multiple data formats.
  • Perform sequential data operations.
  • Supports upper, lower, capital, first-cap formatting to template syntax strings.
  • Apply ordinal, cardinal, alphabetic, numeric formatting in template syntax.
  • Use custom variables in the template documents.
  • Support for text comments within template syntax tags.
  • Dynamically insert document content & hyperlinks in reports.
  • Apply attributes to the email message body.
  • Dynamically apply email attachments.
  • Generate barcode in reports.
  • Dynamically set background color of HTML documents.
  • Supports formatting of numeric, text, image, date-time, chart elements in the template.
  • Apply conditional formatting on template text elements.
  • Linq-based template syntax.
  • Use explicit specifications or file extensions to change the format of the assembled files.
  • Supports the next field analog of Microsoft Word.
  • Update fields during word processing document assembly.
  • Support for applying formula during spreadsheet file assembly.
  • Automatically remove empty paragraphs.
  • Generate various report types, such as charts, lists, tables, etc.
  • Instead of exception throwing, support for inline template syntax errors in generated docs.
  • Load template documents from HTML with resources.
  • Save assembled documents to HTML with resources.

Read & Write Microsoft Office Formats

Microsoft Word: DOC, DOT, DOCX, DOCM, DOTX, DOTM, RTF
Microsoft Excel: XLSX, XLSM, XLTX, XLTM, XLSB, XLS, XLT
Microsoft PowerPoint: PPTX, PPTM, PPSX, PPSM, POTX, POTM, PPT, PPS

Read & Write Other Formats

OpenOffice: ODS, ODT, OTT, OTP, ODP, OXPS
Email: EML, MSG, EMLX
Fixed Layout: PDF, XPS
Markup: HTML, MHTML, XML, XAML
Images: TIFF, SVG
eBook: EPUB
PostScript: PS
Printer Control: PCL
Markdown: MD
Text: TXT

Please visit the Supported Document Formats for details.

Develop & Deploy GroupDocs.Assembly Anywhere

Microsoft Windows: Microsoft Windows Desktop (x86, x64), Microsoft Windows Server (x86, x64), Windows Azure
macOS: Mac OS X (x64, ARM64)
Linux: Ubuntu, OpenSUSE, CentOS, and others
Development Environments: Microsoft Visual Studio, JetBrains Rider, Visual Studio Code
Supported Frameworks: .NET Framework 4.0 Client Profile, .NET Framework 4.6.2, .NET 6.0, .NET 8.0, .NET 10.0

Supported Target Frameworks (NuGet)

Starting with version 26.6.0, GroupDocs.Assembly ships as a metapackage that resolves to a dedicated runtime package per target framework — only the binaries matching your TFM are downloaded.

Package Target framework
GroupDocs.Assembly metapackage (resolves to one of the below)
GroupDocs.Assembly.Net40Client .NET Framework 4.0 Client Profile
GroupDocs.Assembly.Net462 .NET Framework 4.6.2
GroupDocs.Assembly.Net60 .NET 6.0
GroupDocs.Assembly.Net80 .NET 8.0
GroupDocs.Assembly.Net100 .NET 10.0

Install the GroupDocs.Assembly metapackage — NuGet selects the matching runtime automatically.

Get Started

Are you ready to give GroupDocs.Assembly for .NET a try? Simply execute Install-Package GroupDocs.Assembly from Package Manager Console in Visual Studio to fetch & reference GroupDocs.Assembly, assembly in your project. If you already have GroupDocs.Assembly for .Net and want to upgrade it, please execute Update-Package GroupDocs.Assembly to get the latest version.

Please check the GitHub Repository for other common usage scenarios.

Generate a DOCX File from Markdown (MD) template via C# Code

//Setting up source document template
const String strDocumentTemplate = "Markdown Templates/ReadMe.md";
//Setting up destination Markdown reports
const String strDocumentReport = "Word Reports/ReadMe Out.docx";
//Setting up description variable
const string description = "GroupDocs.Assembly for .NET is a class library that enables you to generate documents in popular " +
    "office and email file formats based upon template documents and data obtained from various sources " +
    "including databases, XML, JSON, OData, objects of custom .NET types, external documents, and more.";

DocumentAssembler assembler = new DocumentAssembler();
//Assemble Document
assembler.AssembleDocument(
    CommonUtilities.GetSourceDocument(strDocumentTemplate),
    CommonUtilities.SetDestinationDocument(strDocumentReport),
    new DataSourceInfo("GroupDocs.Assembly for .NET", "product"),
    new DataSourceInfo(description, "description"));
}

Use Spreadsheet as a Data Source to Assemble a Document

string strDocumentTemplate = "Word Templates/Using Spreadsheet as Table of Data.docx";
string strDocumentReport = "Word Reports/Using Spreadsheet as Table of Data_Output.docx";
// Assemble a document using the external document table as a data source.
DocumentAssembler assembler = new DocumentAssembler();
assembler.AssembleDocument(CommonUtilities.GetSourceDocument(strDocumentTemplate),
    CommonUtilities.SetDestinationDocument(strDocumentReport),
    new DataSourceInfo(DataLayer.ExcelData(), "contracts"));

Assemble a Document from JSON Data via C#

// Load the JSON file as the data source.
JsonDataSource dataSource = new JsonDataSource("Managers.json");

DocumentAssembler assembler = new DocumentAssembler();
assembler.AssembleDocument(
    "Data destination with nested elements.docx",   // template
    "AssembleFromJson.docx",                        // output
    new DataSourceInfo(dataSource, "managers"));

Assemble a Tabular Report from a Spreadsheet Data Source via C#

// Pull rows from an external Excel workbook and bind them to a Word template
// containing a <<foreach [r in ds]>> ... <</foreach>> band.
DocumentAssembler assembler = new DocumentAssembler();
assembler.AssembleDocument(
    "Data table.docx",                              // template with a table-band tag
    "AssembleTableReport.docx",                     // output
    new DataSourceInfo(DataLayer.ExcelData(), "ds"));

Product Page | Docs | Demo | API Reference | Examples | Blog | Releases | Free Support | Temporary License

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 (1)

Showing the top 1 NuGet packages that depend on GroupDocs.Assembly.Net100:

Package Downloads
GroupDocs.Assembly

GroupDocs.Assembly for .NET is a class library that enables you to generate documents in popular office and email file formats based upon template documents and data obtained from various sources including databases, XML, JSON, OData, CSV, objects of custom .NET types, external documents, and more. The library is not tied with any particular document type or industry and is able to help you in generation of documents of various types, be it business, financial, or legal documents, reports, letters, invoices, bills, insurance policies, NDAs, and so on.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
26.6.0 76 6/30/2026