Skip to content

Commit a13acd0

Browse files
committed
Updated installation documentation page
1 parent f21487c commit a13acd0

1 file changed

Lines changed: 17 additions & 7 deletions

File tree

net/getting-started/installation.md

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@ This topic describes how to add the **GroupDocs.Conversion** library to your .NE
1515

1616
## Install GroupDocs.Conversion using NuGet packages
1717

18-
You can use the following tools to install the [GroupDocs.Conversion](https://www.nuget.org/packages/GroupDocs.Conversion) NuGet package:
18+
There are two NuGet packages available depending on your target framework:
19+
20+
* [GroupDocs.Conversion](https://www.nuget.org/packages/GroupDocs.Conversion) - for .NET 6 and later
21+
* [GroupDocs.Conversion.NETFramework](https://www.nuget.org/packages/GroupDocs.Conversion.NETFramework) - for .NET Framework 4.6.2 and later
22+
23+
You can use the following tools to install the appropriate NuGet package:
1924

2025
* [NuGet Package Manager](#use-the-nuget-package-manager)
2126
* [Package Manager Console](#use-the-package-manager-console)
@@ -29,27 +34,32 @@ Open your project or solution in Visual Studio and follow the steps below to ins
2934

3035
![Manage NuGet packages in Visual Studio](/conversion/net/images/getting-started/installation/manage-nuget-packages.png)
3136

32-
2. Select the **Browse** tab and type **GroupDocs.Conversion** in the search box. Select the latest version of the **GroupDocs.Conversion** package and click **Install**.
37+
2. Select the **Browse** tab and type **GroupDocs.Conversion** in the search box. Select the appropriate package for your target framework (**GroupDocs.Conversion** for .NET 6+ or **GroupDocs.Conversion.NETFramework** for .NET Framework) and click **Install**.
3338

3439
![Install NuGet packages in Visual Studio](/conversion/net/images/getting-started/installation/install-nuget-package.png)
3540

3641
### Use the Package Manager Console
3742

38-
The [Package Manager Console](https://learn.microsoft.com/en-us/nuget/consume-packages/install-use-packages-powershell) uses PowerShell commands to install, update, and remove NuGet packages. Open your project in Visual Studio and click **Tools** -> **NuGet Package Manager** -> **Package Manager Console** to open the console window. Run the the following command to install the latest version of the **GroupDocs.Conversion** library:
43+
The [Package Manager Console](https://learn.microsoft.com/en-us/nuget/consume-packages/install-use-packages-powershell) uses PowerShell commands to install, update, and remove NuGet packages. Open your project in Visual Studio and click **Tools** -> **NuGet Package Manager** -> **Package Manager Console** to open the console window. Run one of the following commands to install the latest version of the **GroupDocs.Conversion** library:
3944

4045
{{< tabs "example1">}}
41-
{{< tab "PowerShell" >}}
46+
{{< tab ".NET 6+" >}}
4247
```shell
4348
PM> Install-Package GroupDocs.Conversion
4449
```
4550
{{< /tab >}}
51+
{{< tab ".NET Framework" >}}
52+
```shell
53+
PM> Install-Package GroupDocs.Conversion.NETFramework
54+
```
55+
{{< /tab >}}
4656
{{< /tabs >}}
4757

4858
![Use Package Manager Console ](/conversion/net/images/getting-started/installation/package-manager-console.png)
4959

5060
### Use the .NET CLI
5161

52-
You can also use the [.NET CLI tool](https://docs.microsoft.com/en-us/dotnet/core/tools/) to install and update NuGet packages. Open a terminal in your project's folder and execute the following command to install the **GroupDocs.Conversion** package:
62+
You can also use the [.NET CLI tool](https://docs.microsoft.com/en-us/dotnet/core/tools/) to install and update NuGet packages. This method is available for .NET 6+ projects. Open a terminal in your project's folder and execute the following command to install the **GroupDocs.Conversion** package:
5363

5464
{{< tabs "example2">}}
5565
{{< tab ".NET CLI" >}}
@@ -65,13 +75,13 @@ Visit [https://releases.groupdocs.com/conversion/net/](https://releases.groupdoc
6575

6676
1. Extract files from the ZIP archive or run the MSI installer to install **GroupDocs.Conversion** to a specific location on your computer.
6777
2. Open your solution or project in Visual Studio.
68-
3. In **Solution Explorer**, right-click the **References** or **Dependencies** node, and select **Add Reference** (for a .NET Framework project) or **Add Project Reference** (for a .NET Core project).
78+
3. In **Solution Explorer**, right-click the **References** or **Dependencies** node, and select **Add Reference** (for a .NET Framework project) or **Add Project Reference** (for a .NET project).
6979
4. In the **Reference Manager** dialog box, select the **Browse** tab and click **Browse** to locate the _GroupDocs.Conversion.dll_ file for the target framework.
7080

7181
![Browse for the GroupDocs.Conversion assembly](/conversion/net/images/getting-started/installation/browse-for-groupdocs-dll.png)
7282

7383
5. Click **OK** to add a reference to the **GroupDocs.Conversion** library to your project.
7484

7585
{{< alert style="warning" >}}
76-
If your application targets .NET Core / .NET 5+, ensure that your project has all the required dependencies installed. Refer to the following page for details: [GroupDocs.Conversion dependencies](https://www.nuget.org/packages/groupdocs.conversion#dependencies-body-tab).
86+
If your application targets .NET 6+, ensure that your project has all the required dependencies installed. Refer to the following page for details: [GroupDocs.Conversion dependencies](https://www.nuget.org/packages/groupdocs.conversion#dependencies-body-tab).
7787
{{< /alert >}}

0 commit comments

Comments
 (0)