You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: net/getting-started/how-to-run-examples.md
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,9 @@ You can build a project from scratch using Visual Studio or [.NET CLI](https://d
24
24
25
25
### Build a project using .NET CLI
26
26
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>.
28
30
2. Create a directory for your console app by executing the `mkdir my-console-app` command in your terminal.
29
31
3. Navigate to the `my-console-app` directory by executing the `cd my-console-app` command.
30
32
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
51
53
52
54
### Build a project using Visual Studio
53
55
56
+
This method applies to both .NET 6+ and .NET Framework 4.6.2+ projects.
57
+
54
58
1. Open Visual Studio and go to **File** -> **New** -> **Project**.
55
59
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" >}}).
0 commit comments