DotNetDocs.Mintlify 1.5.4

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

DotNetDocs.Mintlify

NuGet Downloads License

<a href="https://dotnetdocs.com"> <img src="https://raw.githubusercontent.com/CloudNimble/DotNetDocs/refs/heads/dev/src/CloudNimble.DotNetDocs.Docs/images/logos/dotnetdocs.light.svg" alt="DotNetDocs Logo" width="450" /> </a>

Extensions for DotNetDocs that transform your .NET XML Doc Comments into beautiful Mintlify websites with smart navigation, context-aware icons, and rich MDX features.

Features

  • MDX with Frontmatter: Auto-generated frontmatter with icons, tags, SEO metadata, and keywords
  • Smart Navigation: Automatic docs.json generation with hierarchical namespace organization
  • Context-Aware Icons: 50+ FontAwesome icons automatically assigned based on type characteristics
  • React Components: Embed custom React components directly in your MDX files
  • Flexible Output Modes: Choose between File and Folder namespace organization

Installation

dotnet add package DotNetDocs.Mintlify

Quick Start

using CloudNimble.DotNetDocs.Core.Configuration;
using Microsoft.Extensions.DependencyInjection;

var builder = new DotNetDocsBuilder()
    .AddDefaultPipeline()
    .AddMintlifyRenderer(options =>
    {
        options.NavigationMode = NavigationMode.Unified;
        options.NamespaceMode = NamespaceMode.Folder;
        options.GenerateDocsJson = true;
        options.IncludeIcons = true;
    });

var result = await builder.BuildAsync();
  • Unified: Single navigation tree with all namespaces (best for single-project solutions)
  • ByAssembly: Separate groups per assembly (best for multi-project solutions)

Output Modes

  • File Mode: One MDX file per namespace (simpler file structure)
  • Folder Mode: Folder per namespace with separate type files (better for large projects)

Preview Your Docs

npm install -g mintlify
cd docs
mintlify dev

Your documentation will be available at http://localhost:3000.

See Also

Requirements

  • .NET 8.0+, .NET 9.0+, or .NET 10.0+
  • Mintlify CLI (for local preview)

License

MIT License - see LICENSE for details.

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. 
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.5.4 119 4/5/2026
1.5.3 106 3/23/2026
1.5.2 101 3/23/2026
1.5.1 100 3/23/2026
1.5.1-preview.4 51 3/23/2026
1.5.1-preview.3 58 3/23/2026
1.5.1-preview.2 62 3/15/2026
1.5.1-preview.1 63 3/15/2026
1.5.0 113 3/11/2026
1.5.0-preview.2 66 3/11/2026
1.5.0-preview.1 62 3/10/2026
1.4.1 107 2/28/2026
1.4.1-preview.2 63 2/28/2026
1.4.1-preview.1 62 2/28/2026
1.4.0 111 2/28/2026
1.3.1-preview.1 69 2/27/2026
1.3.0 121 1/16/2026
1.3.0-preview.2 71 1/16/2026
1.2.1-preview.1 77 1/12/2026
1.2.0 220 12/19/2025
Loading failed