GroupDocs.Parser for .NET supports the following frameworks:
Framework
Minimum Version
Package
.NET Framework
4.6.1
GroupDocs.Parser.Framework
.NET Core
2.0
GroupDocs.Parser
.NET Standard
2.0
GroupDocs.Parser
.NET
5.0+
GroupDocs.Parser
Note
For .NET Framework 4.5 and earlier: You need to upgrade to .NET Framework 4.6.1 or higher, or target .NET Standard 2.0 compatible packages. GroupDocs.Parser requires .NET Standard 2.0 compatibility.
Install from NuGet
NuGet is the easiest way to download and install GroupDocs.Parser for .NET. There are multiple ways to install it in your project.
Install via Package Manager GUI
Follow these steps to reference GroupDocs.Parser using Package Manager GUI:
Open your solution/project in Visual Studio.
Click Tools -> NuGet Package Manager -> Manage NuGet Packages for Solution. You can also access the same option through the Solution Explorer. Right-click the solution or project and select Manage NuGet Packages from the context menu
Select Browse tab and type “GroupDocs.Parser” in the search text box.
Click the Install button to install the latest version of the API into your project as shown in the following screenshot.
Using Package Manager Console
You can follow the steps below to reference GroupDocs.Parser for .NET using the Package Manager Console:
Open your solution/project in Visual Studio.
Select Tools -> NuGet Package Manager -> Package Manager Console from the menu to open package manager console.
Type the command based on your target framework:
For .NET Core/.NET 5+: Install-Package GroupDocs.Parser
For .NET Framework: Install-Package GroupDocs.Parser.Framework
Press enter to install the latest release into your application.
After successful installation, GroupDocs.Parser will be referenced in your application.
Using .NET CLI (.NET Core/.NET 5+)
For .NET Core, .NET 5, .NET 6, or later projects:
# Create a new console projectdotnet new console -n MyParserApp
cd MyParserApp
# Add the packagedotnet add package GroupDocs.Parser
# Restore packagesdotnet restore
Quick Start with .NET Core
Here’s a complete example for setting up a .NET Core project:
# 1. Create new projectdotnet new console -n GroupDocsParserDemo
cd GroupDocsParserDemo
# 2. Install packagedotnet add package GroupDocs.Parser
# 3. Run the projectdotnet run
Starting with 24.2 version, GroupDocs.Parser is divided into two packages - for .NET Framework and .NET Standard. GroupDocs.Parser for .NET Framework package is recommended for using with .NET Framework projects. GroupDocs.Parser package is designed to work with .NET projects. You need to configure binding redirection to make it work with .NET Framework. For regular .NET Framework project it’s required to enable automatic binding redirection. For unit tests projects you also need to specify GenerateBindingRedirectsOutputType in the project file: