Skip to content

Commit

Permalink
VIEWERNET-4711 - Finishing updating docs
Browse files Browse the repository at this point in the history
  • Loading branch information
denis-gvardionov committed Mar 13, 2024
1 parent 897f001 commit 0b2447c
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
11 changes: 8 additions & 3 deletions net/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ Open your project or solution in Visual Studio and follow the steps below to ins
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.Viewer** library:

{{< tabs "example1">}}
{{< tab "PowerShell GroupDocs.Viewer for .NET" >}}
{{< tab "GroupDocs.Viewer for .NET" >}}
```
PM> Install-Package GroupDocs.Viewer
```
{{< /tab >}}
{{< tab "PowerShell GroupDocs.Viewer.CrossPlatform" >}}
{{< tab "GroupDocs.Viewer.CrossPlatform" >}}
```
PM> Install-Package GroupDocs.Viewer.CrossPlatform
```
Expand All @@ -56,11 +56,16 @@ PM> Install-Package GroupDocs.Viewer.CrossPlatform
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.Viewer** package:

{{< tabs "example2">}}
{{< tab ".NET CLI" >}}
{{< tab "GroupDocs.Viewer for .NET" >}}
```
dotnet add package GroupDocs.Viewer
```
{{< /tab >}}
{{< tab "GroupDocs.Viewer.CrossPlatform" >}}
```
dotnet add package GroupDocs.Viewer.CrossPlatform
```
{{< /tab >}}
{{< /tabs >}}

## Download GroupDocs.Viewer from the official website
Expand Down
2 changes: 1 addition & 1 deletion net/getting-started/system-requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Both GroupDocs.Viewer for .NET and GroupDocs.Viewer.CrossPlatform support Mac OS

## Supported Frameworks and Target Runtimes

**GroupDocs.Viewer for .NET** supports .NET Framework, .NET Core and .NET platforms. Current version supports .NET Framework 4.6.2 and above, .NET Core 3.1, .NET 5 and above. Older versions of GroupDocs.Viewer for .NET also have supported older .NET Frameworks: .NET Framework 2.0 and 3.5support was dropped since v22.3, and .NET Framework 4.0 to 4.6.0 was dropped since v23.8.
**GroupDocs.Viewer for .NET** supports .NET Framework, .NET Core and .NET platforms. Current version supports .NET Framework 4.6.2 and above, .NET Core 3.1, .NET 5 and above. Older versions of GroupDocs.Viewer for .NET also have supported older .NET Frameworks: .NET Framework 2.0 and 3.5 support was dropped since v22.3, and .NET Framework 4.0 - 4.6.0 was dropped since v23.8.

**GroupDocs.Viewer.CrossPlatform** does not support .NET Framework and .NET Core at all. Its minimum requirement is .NET 6.0 and above.

Expand Down
2 changes: 2 additions & 0 deletions net/rendering-basics/render-images.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ GroupDocs.Viewer supports the following image file formats:

GroupDocs.Viewer can detect the image format automatically based on information in the file header.

{{< alert style="info" >}}All Photoshop-related image formats (AI, PSD, and PSB) currently are not supported by the GroupDocs.Viewer.CrossPlatform.{{< /alert >}}

## Render images as HTML

Create an [HtmlViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/htmlviewoptions) class instance and pass it to the [Viewer.View](https://reference.groupdocs.com/viewer/net/groupdocs.viewer/viewer/methods/view/index) method to convert an image to HTML. The `HtmlViewOptions` class properties allow you to control the conversion process. For instance, you can embed all external resources in the generated HTML file, minify the output file, and optimize it for printing. Refer to the following documentation section for details: [Rendering to HTML]({{< ref "viewer/net/developer-guide/rendering-documents/rendering-to-html/_index.md" >}}).
Expand Down
2 changes: 2 additions & 0 deletions net/rendering-basics/render-ms-project-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ GroupDocs.Viewer supports the following Project Management file formats:

GroupDocs.Viewer can detect the document format automatically based on information in the file header.

{{< alert style="info" >}}Family of the Project Management file formats (MPP, MPT, and MPX) currently is not supported by the GroupDocs.Viewer.CrossPlatform.{{< /alert >}}

## Render Project files as HTML

Create an [HtmlViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/htmlviewoptions) class instance and pass it to the [Viewer.View](https://reference.groupdocs.com/viewer/net/groupdocs.viewer/viewer/methods/view/index) method to convert a Project file to HTML. The `HtmlViewOptions` class properties allow you to control the conversion process. For instance, you can embed all external resources in the generated HTML file, minify the output file, and optimize it for printing. Refer to the following documentation section for details: [Rendering to HTML]({{< ref "viewer/net/developer-guide/rendering-documents/rendering-to-html/_index.md" >}}).
Expand Down
2 changes: 2 additions & 0 deletions net/rendering-basics/render-visio-documents.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ GroupDocs.Viewer supports the following Visio file formats:

GroupDocs.Viewer can detect the document format automatically based on information in the file header.

{{< alert style="info" >}}Family of Visio file formats currently is not supported by the GroupDocs.Viewer.CrossPlatform.{{< /alert >}}

## Render Visio files as HTML

Create an [HtmlViewOptions](https://reference.groupdocs.com/viewer/net/groupdocs.viewer.options/htmlviewoptions) class instance and pass it to the [Viewer.View](https://reference.groupdocs.com/viewer/net/groupdocs.viewer/viewer/methods/view/index) method to convert a Visio file to HTML. The `HtmlViewOptions` class properties allow you to control the conversion process. For instance, you can embed all external resources in the generated HTML file, minify the output file, and optimize it for printing. Refer to the following documentation section for details: [Rendering to HTML]({{< ref "viewer/net/developer-guide/rendering-documents/rendering-to-html/_index.md" >}}).
Expand Down

0 comments on commit 0b2447c

Please sign in to comment.