This topic describes how to add the GroupDocs.Markdown library to your .NET project.
Install from NuGet
GroupDocs.Markdown is available on NuGet. The main package is a meta-package that automatically pulls in the correct runtime package for your project’s target framework.
Using .NET CLI
Open a terminal in your project folder and run:
dotnet add package GroupDocs.Markdown
Using Package Manager Console
In Visual Studio, open Tools > NuGet Package Manager > Package Manager Console and run:
The NuGet package includes assemblies for four target frameworks:
Target Framework
Runtime Package
.NET Framework 4.6.2
GroupDocs.Markdown.Net462
.NET 6.0
GroupDocs.Markdown.Net60
.NET 8.0
GroupDocs.Markdown.Net80
.NET 10.0
GroupDocs.Markdown.Net100
In most cases, install only the main GroupDocs.Markdown package. NuGet will resolve the correct runtime package automatically. You can also install a specific runtime package directly if needed:
dotnet add package GroupDocs.Markdown.Net80
Download from the Official Website
You can also download the assemblies as a ZIP archive or MSI installer from the GroupDocs Releases website.
Download the ZIP or MSI for the desired version.
Extract files (ZIP) or run the installer (MSI).
In your project, add a reference to the GroupDocs.Markdown.dll file for the target framework you need (e.g., bin/net8.0/GroupDocs.Markdown.dll).
Verify Installation
After installing, verify that the package is accessible:
usingGroupDocs.Markdown;// List all supported formatsforeach(FileFormatformatinMarkdownConverter.GetSupportedFormats())Console.WriteLine(format);
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.