Codeuctivity.OpenXmlPowerTools 10.0.579

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

OpenXmlPowerTools

  • Linux, Windows, and macOS support was added by this fork

Example - Convert DOCX to HTML

var sourceDocxFileContent = File.ReadAllBytes("./source.docx");
using var memoryStream = new MemoryStream();
await memoryStream.WriteAsync(sourceDocxFileContent, 0, sourceDocxFileContent.Length);
using var wordProcessingDocument = WordprocessingDocument.Open(memoryStream, true);
var settings = new WmlToHtmlConverterSettings("htmlPageTitle");
var html = WmlToHtmlConverter.ConvertToHtml(wordProcessingDocument, settings);
var htmlString = html.ToString(SaveOptions.DisableFormatting);
File.WriteAllText("./target.html", htmlString, Encoding.UTF8);
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 Codeuctivity.OpenXmlPowerTools:

Package Downloads
Codeuctivity.OpenXmlToHtml

Converts docx to html without the need to setup any dependency

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.0.579 174 7/10/2026
10.0.571 237 7/3/2026
9.0.493 12,403 2/27/2026
9.0.475 6,989 1/22/2026
9.0.463 3,506 1/12/2026
9.0.456 428 1/6/2026
9.0.434 12,142 11/15/2025
9.0.416 3,609 10/11/2025
9.0.385 351,985 8/15/2025
8.0.374 10,067 8/2/2025
8.0.369 1,026 7/22/2025
8.0.314 17,604 3/1/2025
8.0.310 273 2/26/2025
8.0.306 214 2/26/2025
8.0.302 383 2/22/2025
8.0.295 459 2/15/2025
8.0.292 254 2/14/2025
8.0.251 15,461 7/24/2024
8.0.237 9,252 3/19/2024
7.0.210 10,806 11/14/2023
Loading failed

Merge pull request #217 from Codeuctivity/main

Update SkiaSharp and related dependencies to latest versions