Codeuctivity.OpenXmlPowerTools 10.0.621

Prefix Reserved
dotnet add package Codeuctivity.OpenXmlPowerTools --version 10.0.621
                    
NuGet\Install-Package Codeuctivity.OpenXmlPowerTools -Version 10.0.621
                    
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.621" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Codeuctivity.OpenXmlPowerTools" Version="10.0.621" />
                    
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.621
                    
#r "nuget: Codeuctivity.OpenXmlPowerTools, 10.0.621"
                    
#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.621
                    
#: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.621
                    
Install as a Cake Addin
#tool nuget:?package=Codeuctivity.OpenXmlPowerTools&version=10.0.621
                    
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.621 36 9/13/2026
10.0.579 4,569 7/10/2026
10.0.571 331 7/3/2026
9.0.493 18,931 2/27/2026
9.0.475 7,796 1/22/2026
9.0.463 3,912 1/12/2026
9.0.456 459 1/6/2026
9.0.434 14,573 11/15/2025
9.0.416 4,349 10/11/2025
9.0.385 382,875 8/15/2025
8.0.374 16,291 8/2/2025
8.0.369 1,108 7/22/2025
8.0.314 18,329 3/1/2025
8.0.310 281 2/26/2025
8.0.306 224 2/26/2025
8.0.302 389 2/22/2025
8.0.295 467 2/15/2025
8.0.292 263 2/14/2025
8.0.251 15,796 7/24/2024
8.0.237 9,425 3/19/2024
Loading failed

Bump SkiaSharp from 4.151.2 to 4.152.0 - #231