Skip to content

Commit f877fb9

Browse files
committed
Updated how to run examples documentation
1 parent a13acd0 commit f877fb9

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

net/getting-started/how-to-run-examples.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ You can build a project from scratch using Visual Studio or [.NET CLI](https://d
2424

2525
### Build a project using .NET CLI
2626

27-
1. Make sure you have .NET Core or .NET SDK installed <https://dotnet.microsoft.com/download>.
27+
This method applies to .NET 6+ projects.
28+
29+
1. Make sure you have .NET SDK installed <https://dotnet.microsoft.com/download>.
2830
2. Create a directory for your console app by executing the `mkdir my-console-app` command in your terminal.
2931
3. Navigate to the `my-console-app` directory by executing the `cd my-console-app` command.
3032
4. Create an empty console app by executing the `dotnet new console` command.
@@ -51,9 +53,15 @@ You can build a project from scratch using Visual Studio or [.NET CLI](https://d
5153

5254
### Build a project using Visual Studio
5355

56+
This method applies to both .NET 6+ and .NET Framework 4.6.2+ projects.
57+
5458
1. Open Visual Studio and go to **File** -> **New** -> **Project**.
5559
2. Select the appropriate project type - Console App, ASP.NET Web Application etc.
56-
3. Install **GroupDocs.Conversion for .NET** from Nuget or the official GroupDocs website following this [guide]({{< ref "conversion/net/getting-started/installation.md" >}}).
60+
3. Install the appropriate **GroupDocs.Conversion** NuGet package for your target framework:
61+
* [GroupDocs.Conversion](https://www.nuget.org/packages/GroupDocs.Conversion) - for .NET 6+
62+
* [GroupDocs.Conversion.NETFramework](https://www.nuget.org/packages/GroupDocs.Conversion.NETFramework) - for .NET Framework 4.6.2+
63+
64+
For detailed installation instructions, see the [Installation guide]({{< ref "conversion/net/getting-started/installation.md" >}}).
5765
4. Add the following code to the `Main` method:
5866

5967
```csharp

0 commit comments

Comments
 (0)