From 6acbfdfc45dadfa003685ba0b101907dbb9cd2e9 Mon Sep 17 00:00:00 2001 From: Tamilselvan-Durairaj <153176971+Tamilselvan-Durairaj@users.noreply.github.com> Date: Tue, 23 Sep 2025 18:04:10 +0530 Subject: [PATCH 01/11] 983689: Changes for the Getting started and deployment for the Blazor Pdf Viewer --- .../deployment/aws-beanstalk-deployment.md | 62 +++++++++---------- .../getting-started/deploy-maui-windows.md | 52 ++++++++-------- .../server-side-application.md | 28 ++++----- .../blazor/getting-started/web-app.md | 56 ++++++++--------- .../web-assembly-application.md | 44 ++++++------- .../blazor/getting-started/wsl-application.md | 56 ++++++++--------- 6 files changed, 149 insertions(+), 149 deletions(-) diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/deployment/aws-beanstalk-deployment.md b/Document-Processing/PDF/PDF-Viewer/blazor/deployment/aws-beanstalk-deployment.md index 056f5c834..a971c1388 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/deployment/aws-beanstalk-deployment.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/deployment/aws-beanstalk-deployment.md @@ -1,15 +1,15 @@ --- layout: post -title: Blazor SfPdfViewer deployment in AWS BeanStalk | Syncfusion -description: AWS Elastic Beanstalk simplifies the deployment and management of scalable web applications and services on Linux-based infrastructure +title: Deploy Blazor Server SfPdfViewer to AWS Elastic Beanstalk (Linux) | Syncfusion +description: Add the Syncfusion Blazor PDF Viewer (SfPdfViewer2) to a Blazor Server app and deploy it to AWS Elastic Beanstalk on Linux using Visual Studio. platform: document-processing control: SfPdfViewer documentation: ug --- -# Deploy Blazor Server App on AWS Elastic Beanstalk Linux +# Deploy a Blazor Server app to AWS Elastic Beanstalk (Linux) -In this section, we'll guide you through the process of adding Syncfusion® Blazor PDF Viewer component to your Blazor Server app and deploy it on AWS Elastic Beanstalk. We'll break it down into simple steps to make it easy to follow. Additionally, you can find a fully functional example project on our [GitHub repository](https://github.com/SyncfusionExamples/blazor-pdf-viewer-examples/tree/master/Server%20Deployment/AWS/AWS_Elastic_Beanstalk/SfPdfViewerApp). +This article describes how to add the Syncfusion® Blazor PDF Viewer component to a Blazor Server app and deploy the app to AWS Elastic Beanstalk (Linux). A fully functional sample is available in the [GitHub repository](https://github.com/SyncfusionExamples/blazor-pdf-viewer-examples/tree/master/Server%20Deployment/AWS/AWS_Elastic_Beanstalk/SfPdfViewerApp). ## Prerequisites @@ -19,11 +19,11 @@ In this section, we'll guide you through the process of adding Syncfusion® B Create a new Blazor Server app and name it **PDFViewerGettingStarted**. -N> The PDF Viewer component is supported from .NET 6.0 onwards. +N> The PDF Viewer component is supported on .NET 6.0 and later. ## Install Blazor PDF Viewer NuGet package in Blazor Server App -Add the following NuGet packages into the Blazor Server app. +Add the following NuGet packages to the Blazor Server app. * [Syncfusion.Blazor.SfPdfViewer](https://www.nuget.org/packages/Syncfusion.Blazor.SfPdfViewer) * [Syncfusion.Blazor.Themes](https://www.nuget.org/packages/Syncfusion.Blazor.Themes) @@ -83,7 +83,7 @@ Add the following stylesheet and script to the head section of the **~/Pages/_Ho ## Adding Blazor PDF Viewer Component -Add the Syncfusion® PDF Viewer (Next Gen) component in the **~/Pages/Index.razor** file +Add the Syncfusion® PDF Viewer (Next-Gen) component in the **~/Pages/Index.razor** file. {% tabs %} {% highlight razor %} @@ -98,42 +98,42 @@ Add the Syncfusion® PDF Viewer (Next Gen) c {% endhighlight %} {% endtabs %} -N> If you don't provide the `DocumentPath` property value, the PDF Viewer component will be rendered without loading the PDF document. Users can then use the **open** option from the toolbar to browse and open the PDF as required. +N> If the `DocumentPath` property is not set, the PDF Viewer renders without loading a PDF document. Users can use the **Open** option in the toolbar to browse and open a PDF as needed. ## Run the application -Run the application, and the PDF file will be displayed using Syncfusion® Blazor PDF Viewer component in your browser. +Run the application to display the PDF file in the Syncfusion® Blazor PDF Viewer component in the browser. -{% previewsample "https://blazorplayground.syncfusion.com/embed/hZVzNWqXLSZpnuzc?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" backgroundimage "[Blazor SfPdfViewer Component](aws-benstalk-deployment-images/blazor-pdfviewer.png)" %} +{% previewsample "https://blazorplayground.syncfusion.com/embed/hZVzNWqXLSZpnuzc?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" backgroundimage "[Blazor Server SfPdfViewer rendering in browser](aws-benstalk-deployment-images/blazor-pdfviewer.png)" %} ## Steps to publish as AWS Elastic Beanstalk -1. Right-click the project and select Publish to AWS Elastic Beanstalk (Legacy) option. -![beanstalk-publish](aws-benstalk-deployment-images/beanstalk-publish.png) -2. Select the Deployment Target as Create a new application environment and click Next button. -![deployment-target](aws-benstalk-deployment-images/beanstalk-instance.png) -3. Choose the Environment Name in the dropdown list and the URL will be automatically assign and check the URL is available, if available click next otherwise change the URL -![beanstalk-environment-name](aws-benstalk-deployment-images/beanstalk-environment.png) -4. Select the instance type in t3a.micro from the dropdown list and click next. -![beanstalk-instance-type](aws-benstalk-deployment-images/beanstalk-aws-options.png) -5. Click the Next button to proceed further. -![beanstalk-roles](aws-benstalk-deployment-images/beanstalk-permissions.png) -6. Click the Next button -![beanstalk-review](aws-benstalk-deployment-images/beanstalk-review.png) -7. Click the Deploy button to deploy the sample on AWS Elastic Beanstalk. -![beanstalk-deploy](aws-benstalk-deployment-images/beanstalk-deploy.png) -8. After changing the status from Updating to Environment is healthy, click the URL. -![beanstalk-success-message](aws-benstalk-deployment-images/beanstalk-success.png) -9. After opening the provided URL the provided PDF document will be displayed in PDF Viewer. -![beanstalk-output](aws-benstalk-deployment-images/beanstalk-output.png) +1. Right-click the project and select Publish to AWS Elastic Beanstalk (Legacy). +![Publish to AWS Elastic Beanstalk (Legacy) in Visual Studio](aws-benstalk-deployment-images/beanstalk-publish.png) +2. Select the deployment target Create a new application environment, and then click Next. +![Create a new application environment selection](aws-benstalk-deployment-images/beanstalk-instance.png) +3. Choose an environment name. The URL is assigned automatically—verify availability. If the URL is available, click Next; otherwise, change the URL and retry. +![Configure Elastic Beanstalk environment name and URL](aws-benstalk-deployment-images/beanstalk-environment.png) +4. Select the instance type t3a.micro from the drop-down list, and then click Next. +![Select t3a.micro instance type](aws-benstalk-deployment-images/beanstalk-aws-options.png) +5. Click Next to proceed. +![Review required roles and permissions](aws-benstalk-deployment-images/beanstalk-permissions.png) +6. Click Next. +![Review configuration summary](aws-benstalk-deployment-images/beanstalk-review.png) +7. Click Deploy to publish the application to AWS Elastic Beanstalk. +![Deploy the application to Elastic Beanstalk](aws-benstalk-deployment-images/beanstalk-deploy.png) +8. When the environment status changes from Updating to Environment is healthy, click the provided URL. +![Elastic Beanstalk environment health and application URL](aws-benstalk-deployment-images/beanstalk-success.png) +9. Open the URL to view the application. The specified PDF document is displayed in the PDF Viewer. +![Application running with PDF rendered in the viewer](aws-benstalk-deployment-images/beanstalk-output.png) ## See also -* [Getting Started with Blazor PDF Viewer Component in Blazor WASM App](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/blazor/getting-started/web-assembly-application) +* [Getting started with the Blazor PDF Viewer in a Blazor WebAssembly app](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/blazor/getting-started/web-assembly-application) -* [Getting Started with Blazor PDF Viewer Component in WSL mode](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/blazor/getting-started/wsl-application) +* [Getting started with the Blazor PDF Viewer in WSL mode](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/blazor/getting-started/wsl-application) -* [Learn different ways to add script reference in Blazor Application](https://blazor.syncfusion.com/documentation/common/adding-script-references) +* [Ways to add script references in a Blazor application](https://blazor.syncfusion.com/documentation/common/adding-script-references) diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/deploy-maui-windows.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/deploy-maui-windows.md index df65439e9..b733b67a2 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/deploy-maui-windows.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/deploy-maui-windows.md @@ -1,29 +1,29 @@ --- layout: post -title: Deploy SfPdfViewer in Blazor MAUI in windows | Syncfusion -description: Learn how to deploy SfPdfViewer in Blazor MAUI Application on Windows in Syncfusion Blazor SfPdfViewer component and much more details. +title: Deploy SfPdfViewer in Blazor .NET MAUI on Windows | Syncfusion +description: Learn how to deploy the SfPdfViewer in a Blazor .NET MAUI application on Windows. platform: document-processing control: SfPdfViewer documentation: ug --- -# View PDF files using PDF Viewer Component in the Blazor MAUI app +# View PDF files using the PDF Viewer in a Blazor .NET MAUI app -In this section, we'll guide you through the process of adding Syncfusion® Blazor PDF Viewer component to your Blazor Maui app. We'll break it down into simple steps to make it easy to follow. +This article describes how to add the Syncfusion® Blazor PDF Viewer component to a Blazor .NET MAUI app and deploy it on Windows. ## Prerequisites -To use the MAUI project templates, install the Mobile development with the .NET extension for Visual Studio. For more details, refer to [here](https://learn.microsoft.com/en-us/dotnet/MAUI/get-started/installation?tabs=vswin). +To use the .NET MAUI project templates, install the Mobile development with .NET workload for Visual Studio. For installation details, see the Microsoft documentation: [Install .NET MAUI](https://learn.microsoft.com/en-us/dotnet/MAUI/get-started/installation?tabs=vswin). -## Create a new Blazor MAUI App in Visual Studio +## Create a new Blazor .NET MAUI app in Visual Studio -Create a new Blazor MAUI app and name it **PDFViewerGettingStarted**. +Create a new Blazor .NET MAUI app and name it **PDFViewerGettingStarted**. -N> The PDF Viewer component is supported from .NET 6.0 onwards. +N> The PDF Viewer component is supported on .NET 6.0 and later. -## Install PDF Viewer NuGet package in Blazor Maui App +## Install PDF Viewer NuGet packages in the Blazor .NET MAUI app -Add the following NuGet packages into the Blazor Maui app. +Add the following NuGet packages to the Blazor .NET MAUI app. * [Syncfusion.Blazor.SfPdfViewer](https://www.nuget.org/packages/Syncfusion.Blazor.SfPdfViewer) * [Syncfusion.Blazor.Themes](https://www.nuget.org/packages/Syncfusion.Blazor.Themes) @@ -35,7 +35,7 @@ Add the following NuGet packages into the Blazor Maui app. {% tabs %} {% highlight razor tabtitle="~/_Imports.razor" %} -@using Syncfusion.Blazor +@using Syncfusion.Blazor @using Syncfusion.Blazor.SfPdfViewer {% endhighlight %} @@ -98,9 +98,9 @@ Add the following stylesheet and script to the head section of the **~/wwwroot/i {% endhighlight %} {% endtabs %} -## Add PDF Viewer component +## Add the PDF Viewer component -Add the Syncfusion® PDF Viewer (Next Gen) component in the **~/Pages/Index.razor** file. +Add the Syncfusion® PDF Viewer (Next-Gen) component in the **~/Pages/Index.razor** file. {% tabs %} {% highlight razor %} @@ -121,34 +121,34 @@ Add the Syncfusion® PDF Viewer (Next Gen) c {% endhighlight %} {% endtabs %} -N> If the [DocumentPath](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.PdfViewerBase.html#Syncfusion_Blazor_SfPdfViewer_PdfViewerBase_DocumentPath) property value is not provided, the PDF Viewer component will be rendered without loading a PDF document. Users can then use the open option from the toolbar to browse and open a PDF as required. +N> If the [DocumentPath](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.PdfViewerBase.html#Syncfusion_Blazor_SfPdfViewer_PdfViewerBase_DocumentPath) property is not set, the PDF Viewer renders without loading a PDF document. Users can use the Open option in the toolbar to browse and open a PDF as needed. ## Run on Windows -Run the sample in Windows Machine mode, and it will run Blazor MAUI in Windows. +Run the sample on a Windows machine to execute the Blazor .NET MAUI app. -![Run Windows machine](gettingstarted-images/Windows-machine.png) +![Running the app on a Windows machine](gettingstarted-images/Windows-machine.png) -Upon successfully launching the application, the PDF Viewer component will seamlessly render the specified PDF document within its interface. +After the application launches, the PDF Viewer renders the specified PDF document. -![Blazor SfPdfViewer Component](gettingstarted-images/Windows-maui-output.png) +![Blazor SfPdfViewer rendering the PDF document](gettingstarted-images/Windows-maui-output.png) ## Run on Android -To run the PDF Viewer in a Blazor Android MAUI application using the Android emulator, follow these steps: +To run the PDF Viewer in a Blazor .NET MAUI Android application using the Android emulator, follow these steps: -![Run Windows machine](gettingstarted-images/android-maui.png) +![Android emulator configuration for .NET MAUI](gettingstarted-images/android-maui.png) -Refer [here](https://learn.microsoft.com/en-us/dotnet/maui/android/emulator/device-manager#android-device-manager-on-windows) to install and launch Android emulator. +For setup and usage, see [Android Emulator setup for .NET MAUI](https://learn.microsoft.com/en-us/dotnet/maui/android/emulator/device-manager#android-device-manager-on-windows). -N> If you encounter any errors while using the Android Emulator, refer to the following link for troubleshooting guidance[Troubleshooting Android Emulator](https://learn.microsoft.com/en-us/dotnet/maui/android/emulator/troubleshooting). +N> If any errors occur while using the Android Emulator, see [Troubleshooting Android Emulator](https://learn.microsoft.com/en-us/dotnet/maui/android/emulator/troubleshooting). -![Blazor SfPdfViewer Component](gettingstarted-images/android-emulator.png) +![Blazor SfPdfViewer running in the Android emulator](gettingstarted-images/android-emulator.png) ->[View Sample in GitHub](https://github.com/SyncfusionExamples/blazor-pdf-viewer-examples/tree/master/Server%20Deployment/Maui/MauiBlazorWindow). +>[View the sample on GitHub](https://github.com/SyncfusionExamples/blazor-pdf-viewer-examples/tree/master/Server%20Deployment/Maui/MauiBlazorWindow). ## See also -* [Supported Features: Desktop vs Mobile](./features#supported-features-desktop-vs-mobile). +* [Supported features: desktop vs. mobile](./features#supported-features-desktop-vs-mobile) -* [Render PDF Document from embedded source in the MAUI Android app](../how-to/deploy-maui-using-android-emulator). \ No newline at end of file +* [Render a PDF document from an embedded source in the .NET MAUI Android app](../how-to/deploy-maui-using-android-emulator) diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/server-side-application.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/server-side-application.md index 6961cdb27..7c2c1ef7f 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/server-side-application.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/server-side-application.md @@ -1,15 +1,15 @@ --- layout: post -title: Getting Started with SfPdfViewer in Blazor Server App | Syncfusion -description: Learn how to getting started with SfPdfViewer control in Blazor Server-side application. You can view and comment on PDFs in ease and also can fill fields. +title: Getting started with SfPdfViewer in a Blazor Server app | Syncfusion +description: Learn how to get started with the SfPdfViewer control in a Blazor Server application to view, comment on, and fill PDF forms. platform: document-processing control: SfPdfViewer documentation: ug --- -# View PDF files using PDF Viewer Component in the Blazor Server app +# View PDF files using the PDF Viewer in a Blazor Server app -In this section, we'll guide you through the process of adding Syncfusion® Blazor PDF Viewer component to your Blazor Server app using Visual Studio and Visual Studio Code. We'll break it down into simple steps to make it easy to follow. Additionally, you can find a fully functional example project on our [GitHub repository](https://github.com/SyncfusionExamples/Blazor-Getting-Started-Examples/tree/main/PDFViewer%20%202/BlazorServerApp/PDFViewerSample). +This article describes how to add the Syncfusion® Blazor PDF Viewer component to a Blazor Server app using Visual Studio or Visual Studio Code. A fully functional example project is available in the [GitHub repository](https://github.com/SyncfusionExamples/Blazor-Getting-Started-Examples/tree/main/PDFViewer%20%202/BlazorServerApp/PDFViewerSample). {% tabcontents %} @@ -23,9 +23,9 @@ In this section, we'll guide you through the process of adding Syncfusion® B You can create a **Blazor Server App** using Visual Studio via [Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-7.0&pivots=vs) or the [Syncfusion® Blazor Extension](https://blazor.syncfusion.com/documentation/visual-studio-integration/template-studio). -N> The PDF Viewer component is supported from .NET 6.0 onwards. +N> The PDF Viewer component is supported on .NET 6.0 and later. -## Install Syncfusion® Blazor SfPdfViewer and Themes NuGet in the App +## Install Syncfusion® Blazor SfPdfViewer and Themes NuGet packages in the app To add **Blazor PDFViewer** component in the app, open the NuGet package manager in Visual Studio (*Tools → NuGet Package Manager → Manage NuGet Packages for Solution*), search and install [Syncfusion.Blazor.SfPdfViewer](https://www.nuget.org/packages/Syncfusion.Blazor.SfPdfViewer) and [Syncfusion.Blazor.Themes](https://www.nuget.org/packages/Syncfusion.Blazor.Themes/). Alternatively, you can utilize the following package manager command to achieve the same. @@ -52,7 +52,7 @@ N> Syncfusion® Blazor components are availa You can create a **Blazor Server App** using Visual Studio Code via [Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-7.0&pivots=vsc) or the [Syncfusion® Blazor Extension](https://blazor.syncfusion.com/documentation/visual-studio-code-integration/create-project). -Alternatively, you can create a Server application using the following command in the terminal(Ctrl+`). +Alternatively, create a server application using the following command in the terminal (Ctrl+`). {% tabs %} @@ -65,13 +65,13 @@ cd BlazorApp {% endtabs %} -N> The PDF Viewer component is supported from .NET 6.0 onwards. +N> The PDF Viewer component is supported on .NET 6.0 and later. -## Install Syncfusion® Blazor SfPdfViewer and Themes NuGet in the App +## Install Syncfusion® Blazor SfPdfViewer and Themes NuGet packages in the app * Press Ctrl+` to open the integrated terminal in Visual Studio Code. * Ensure you’re in the project root directory where your `.csproj` file is located. -* Run the following command to install a [Syncfusion.Blazor.SfPdfViewer](https://www.nuget.org/packages/Syncfusion.Blazor.SfPdfViewer) and [Syncfusion.Blazor.Themes](https://www.nuget.org/packages/Syncfusion.Blazor.Themes/) NuGet package and ensure all dependencies are installed. +* Run the following commands to install the [Syncfusion.Blazor.SfPdfViewer](https://www.nuget.org/packages/Syncfusion.Blazor.SfPdfViewer) and [Syncfusion.Blazor.Themes](https://www.nuget.org/packages/Syncfusion.Blazor.Themes/) NuGet packages and ensure all dependencies are installed. {% tabs %} @@ -154,7 +154,7 @@ Add the following stylesheet and script to the head section. The theme styleshee ## Adding Blazor PDF Viewer Component -Add the Syncfusion® PDF Viewer (Next Gen) component in the **~/Pages/Index.razor** file +Add the Syncfusion® PDF Viewer (Next-Gen) component in the **~/Pages/Index.razor** file. {% tabs %} {% highlight razor %} @@ -169,13 +169,13 @@ Add the Syncfusion® PDF Viewer (Next Gen) c {% endhighlight %} {% endtabs %} -N> If you don't provide the [DocumentPath](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.PdfViewerBase.html#Syncfusion_Blazor_SfPdfViewer_PdfViewerBase_DocumentPath) property value, the PDF Viewer component will be rendered without loading the PDF document. Users can then use the **open** option from the toolbar to browse and open the PDF as required. +N> If the [DocumentPath](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.PdfViewerBase.html#Syncfusion_Blazor_SfPdfViewer_PdfViewerBase_DocumentPath) property is not set, the PDF Viewer renders without loading a PDF document. Users can use the **Open** option in the toolbar to browse and open a PDF as needed. ## Run the application -Run the application, and the PDF file will be displayed using Syncfusion® Blazor PDF Viewer component in your browser. +Run the application to display the PDF file in the Syncfusion® Blazor PDF Viewer component in the browser. -{% previewsample "https://blazorplayground.syncfusion.com/embed/hZVzNWqXLSZpnuzc?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" backgroundimage "[Blazor SfPdfViewer Component](gettingstarted-images/blazor-pdfviewer.png)" %} +{% previewsample "https://blazorplayground.syncfusion.com/embed/hZVzNWqXLSZpnuzc?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" backgroundimage "[Blazor Server SfPdfViewer rendering in browser](gettingstarted-images/blazor-pdfviewer.png)" %} ## See also diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-app.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-app.md index 3ff8c90d2..e1098b870 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-app.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-app.md @@ -1,15 +1,15 @@ --- layout: post -title: Getting Started with SfPdfViewer in Blazor Web App | Syncfusion -description: Learn how to getting started with SfPdfViewer control in Blazor Web App. You can view and comment on PDFs in ease and also can fill fields. +title: Getting started with SfPdfViewer in a Blazor Web App | Syncfusion +description: Learn how to get started with the SfPdfViewer control in a Blazor Web App to view, comment on, and fill PDF forms. platform: document-processing control: SfPdfViewer documentation: ug --- -# View PDF files using PDF Viewer Component in the Blazor Web app +# View PDF files using the PDF Viewer in a Blazor Web App -In this section, we’ll guide you through the process of adding Syncfusion® Blazor PDF Viewer component to your Blazor Web App using [Visual Studio](https://visualstudio.microsoft.com/vs/) and Visual Studio Code. We’ll break it down into simple steps to make it easy to follow. +This article describes how to add the Syncfusion® Blazor PDF Viewer component to a Blazor Web App using [Visual Studio](https://visualstudio.microsoft.com/vs/) or Visual Studio Code. {% tabcontents %} @@ -19,14 +19,14 @@ In this section, we’ll guide you through the process of adding Syncfusion® * [System requirements for Blazor components](https://blazor.syncfusion.com/documentation/system-requirements) -* If you choose an Interactive render mode such as WebAssembly or Auto, ensure that you have the necessary .NET workloads installed to use the PDF Viewer component in a Blazor WebApp application with SkiaSharp. To do this, execute the following commands in the command prompt: +* If using an interactive render mode such as WebAssembly or Auto, ensure the required .NET workloads are installed for SkiaSharp usage in a Blazor Web App. Run the following command: * dotnet workload install wasm-tools ## Create a new Blazor Web App in Visual Studio You can create a Blazor Web App using Visual Studio 2022 via [Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-8.0&pivots=windows) or the [Syncfusion® Blazor Extension](https://blazor.syncfusion.com/documentation/visual-studio-integration/template-studio). -You need to configure the corresponding [Interactive render mode](https://learn.microsoft.com/en-us/aspnet/core/blazor/components/render-modes?view=aspnetcore-8.0#render-modes) and [Interactivity location](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-8.0&pivots=windows) while creating a Blazor Web Application. +Configure the appropriate [interactive render mode](https://learn.microsoft.com/en-us/aspnet/core/blazor/components/render-modes?view=aspnetcore-8.0#render-modes) and [interactivity location](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-8.0&pivots=windows) when creating a Blazor Web App. ## Install Blazor PDF Viewer NuGet package in Blazor Web App @@ -35,9 +35,9 @@ To add **Blazor PDF Viewer** component in the app, open the NuGet package manage * [Syncfusion.Blazor.SfPdfViewer](https://www.nuget.org/packages/Syncfusion.Blazor.SfPdfViewer) * [Syncfusion.Blazor.Themes](https://www.nuget.org/packages/Syncfusion.Blazor.Themes) -If you select an Interactive render mode as WebAssembly or Auto, you can install the NuGet package in the client-side project to add component in Web App. +If using the WebAssembly or Auto interactive render mode, install the NuGet packages in the client project to add the component to the Web App. -N> On the Syncfusion® side, we are using SkiaSharp.Views.Blazor version 3.116.1. Please make sure to reference this version as well. +N> Syncfusion® uses SkiaSharp.Views.Blazor version 3.116.1. Ensure this version is referenced. * [SkiaSharp.Views.Blazor](https://www.nuget.org/packages/SkiaSharp.Views.Blazor) ![SkiaSharp Views Blazor](gettingstarted-images/skia-sharp-image.png) @@ -50,14 +50,14 @@ N> On the Syncfusion® side, we are using Sk * [System requirements for Blazor components](https://blazor.syncfusion.com/documentation/system-requirements) -* If you choose an Interactive render mode such as WebAssembly or Auto, ensure that you have the necessary .NET workloads installed to use the PDF Viewer component in a Blazor WebApp application with SkiaSharp. To do this, execute the following commands in the command prompt: +* If using an interactive render mode such as WebAssembly or Auto, ensure the required .NET workloads are installed for SkiaSharp usage in a Blazor Web App. Run the following command: * dotnet workload install wasm-tools ## Create a new Blazor Web App in Visual Studio Code You can create a **Blazor Web App** using Visual Studio Code via [Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-8.0&pivots=vsc) or the [Syncfusion® Blazor Extension](https://blazor.syncfusion.com/documentation/visual-studio-code-integration/create-project). -You need to configure the corresponding [Interactive render mode](https://learn.microsoft.com/en-us/aspnet/core/blazor/components/render-modes?view=aspnetcore-8.0#render-modes) and [Interactivity location](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-8.0&pivots=vsc) while creating a Blazor Web Application. +Configure the appropriate [interactive render mode](https://learn.microsoft.com/en-us/aspnet/core/blazor/components/render-modes?view=aspnetcore-8.0#render-modes) and [interactivity location](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-8.0&pivots=vsc) when creating a Blazor Web App. For example, in a Blazor Web App with the `Auto` interactive render mode, use the following commands. @@ -71,15 +71,15 @@ cd BlazorWebApp.Client {% endhighlight %} {% endtabs %} -N> For more information on creating a **Blazor Web App** with various interactive modes and locations, refer to this [link](https://blazor.syncfusion.com/documentation/getting-started/blazor-web-app?tabcontent=visual-studio-code#render-interactive-modes). +N> For more information on creating a Blazor Web App with various interactive modes and locations, see [Render interactive modes](https://blazor.syncfusion.com/documentation/getting-started/blazor-web-app?tabcontent=visual-studio-code#render-interactive-modes). -## Install Syncfusion® Blazor SfPdfViewer and Themes NuGet in the App +## Install Syncfusion® Blazor SfPdfViewer and Themes NuGet packages in the app -If you utilize `WebAssembly` or `Auto` render modes in the Blazor Web App need to be install Syncfusion® Blazor components NuGet packages within the client project. +If using WebAssembly or Auto render modes in the Blazor Web App, install the Syncfusion® Blazor component NuGet packages within the client project. * Press Ctrl+` to open the integrated terminal in Visual Studio Code. * Ensure you’re in the project root directory where your `.csproj` file is located. -* Run the following command to install a [Syncfusion.Blazor.SfPdfViewer](https://www.nuget.org/packages/Syncfusion.Blazor.SfPdfViewer) and [Syncfusion.Blazor.Themes](https://www.nuget.org/packages/Syncfusion.Blazor.Themes/) NuGet package and ensure all dependencies are installed. +* Run the following commands to install the [Syncfusion.Blazor.SfPdfViewer](https://www.nuget.org/packages/Syncfusion.Blazor.SfPdfViewer) and [Syncfusion.Blazor.Themes](https://www.nuget.org/packages/Syncfusion.Blazor.Themes/) NuGet packages and ensure all dependencies are installed. {% tabs %} @@ -93,9 +93,9 @@ dotnet restore {% endtabs %} -N> Syncfusion® Blazor components are available in [nuget.org](https://www.nuget.org/packages?q=syncfusion.blazor). Refer to [NuGet packages](https://blazor.syncfusion.com/documentation/nuget-packages) topic for available NuGet packages list with component details. +N> Syncfusion® Blazor components are available on [nuget.org](https://www.nuget.org/packages?q=syncfusion.blazor). See [NuGet packages](https://blazor.syncfusion.com/documentation/nuget-packages) for the list of available packages and component details. -N> On the Syncfusion® side, we are using [SkiaSharp.Views.Blazor](https://www.nuget.org/packages/SkiaSharp.Views.Blazor) version 3.116.1. Please make sure to reference this version as well. +N> Syncfusion® uses [SkiaSharp.Views.Blazor](https://www.nuget.org/packages/SkiaSharp.Views.Blazor) version 3.116.1. Ensure this version is referenced. * dotnet add package SkiaSharp.Views.Blazor -v 3.116.1 ![SkiaSharp Views Blazor](gettingstarted-images/skia-sharp-image.png) @@ -108,8 +108,8 @@ N> On the Syncfusion® side, we are using [S | Interactive Render Mode | Description | | -- | -- | -| WebAssembly or Auto | Open **~/_Imports.razor** file from the client project.| -| Server | Open **~/_import.razor** file, which is located in the `Components` folder.| +| WebAssembly or Auto | Open **~/_Imports.razor** from the client project.| +| Server | Open **~/Components/_Imports.razor**.| * In the **~/_Imports.razor** file, add the following namespaces: @@ -122,11 +122,11 @@ N> On the Syncfusion® side, we are using [S {% endhighlight %} {% endtabs %} -* Register the Syncfusion® Blazor Service in the program.cs file of your Blazor Web App. +* Register the Syncfusion® Blazor Service in the **~/Program.cs** file of your Blazor Web App. -If the **Interactive Render Mode** is set to `WebAssembly` or `Auto`, you need to register the Syncfusion® Blazor service in both **~/Program.cs** files of your Blazor Web App. +If the interactive render mode is set to WebAssembly or Auto, register the Syncfusion® Blazor service in both **~/Program.cs** files of the Blazor Web App. -If the **Interactive Render Mode** is set to `Server`, your project will contain a single **~/Program.cs** file. So, you should register the Syncfusion® Blazor Service only in that **~/Program.cs** file. +If the interactive render mode is set to Server, the project contains a single **~/Program.cs** file. Register the Syncfusion® Blazor Service only in that file. {% tabs %} {% highlight c# tabtitle=".NET 9 & .NET 8 (~/Program.cs) Server" hl_lines="2 9 11 13" %} @@ -254,7 +254,7 @@ Add the following stylesheet and script to the head section of the **~/Component ## Adding Blazor PDF Viewer Component -Add the Syncfusion® PDF Viewer (Next Gen) component in the **~Pages/.razor** file. If an interactivity location as `Per page/component` in the web app, define a render mode at the top of the **~Pages/.razor** component, as follows: +Add the Syncfusion® PDF Viewer (Next-Gen) component in the **~Pages/.razor** file. If the interactivity location is set to Per page/component, define a render mode at the top of the **~Pages/.razor** component as follows: | Interactivity location | RenderMode | Code | | --- | --- | --- | @@ -263,7 +263,7 @@ Add the Syncfusion® PDF Viewer (Next Gen) c | | Server | @rendermode InteractiveServer | | | None | --- | -N> If an **Interactivity Location** is set to `Global` and the **Render Mode** is set to `Auto` or `WebAssembly` or `Server`, the render mode is configured in the `App.razor` file by default. +N> If the interactivity location is set to Global and the render mode is set to Auto, WebAssembly, or Server, the render mode is configured in the App.razor file by default. {% tabs %} {% highlight razor %} @@ -274,7 +274,7 @@ N> If an **Interactivity Location** is set to `Global` and the **Render Mode** i {% endhighlight %} {% endtabs %} -N> If an interactivity location as Global no need to mention render mode. Set the interactivity mode for whole sample. +N> If the interactivity location is set to Global, a render mode does not need to be specified per page. The interactivity mode applies to the entire app. Add the Syncfusion® PDF Viewer component in the **~/Pages/Index.razor** file. @@ -290,15 +290,15 @@ Add the Syncfusion® PDF Viewer component in {% endhighlight %} {% endtabs %} -N> If you don’t provide the [DocumentPath](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.PdfViewerBase.html#Syncfusion_Blazor_SfPdfViewer_PdfViewerBase_DocumentPath) property value, the PDF Viewer component will be rendered without loading the PDF document. Users can then use the **open** option from the toolbar to browse and open the PDF as required. +N> If the [DocumentPath](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.PdfViewerBase.html#Syncfusion_Blazor_SfPdfViewer_PdfViewerBase_DocumentPath) property is not set, the PDF Viewer renders without loading a PDF document. Users can use the **Open** option in the toolbar to browse and open a PDF as needed. ## Run the application -Run the application, and the PDF file will be displayed using Syncfusion® Blazor PDF Viewer component in your browser. +Run the application to display the PDF file in the Syncfusion® Blazor PDF Viewer component in the browser. -{% previewsample "https://blazorplayground.syncfusion.com/embed/hZVzNWqXLSZpnuzc?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" backgroundimage "[Blazor SfPdfViewer Component](gettingstarted-images/blazor-pdfviewer.png)" %} +{% previewsample "https://blazorplayground.syncfusion.com/embed/hZVzNWqXLSZpnuzc?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" backgroundimage "[Blazor Web App SfPdfViewer rendering in browser](gettingstarted-images/blazor-pdfviewer.png)" %} -N> [View Sample in GitHub](https://github.com/SyncfusionExamples/Blazor-Getting-Started-Examples/tree/main/PDFViewer%20%202/BlazorWebApp). +N> [View the sample on GitHub](https://github.com/SyncfusionExamples/Blazor-Getting-Started-Examples/tree/main/PDFViewer%20%202/BlazorWebApp). ## See also diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md index 39425baba..f2844a475 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md @@ -1,15 +1,15 @@ --- layout: post -title: Getting Started with SfPdfViewer in Blazor WASM App | Syncfusion -description: Checkout and learn about getting started with Blazor SfPdfViewer component in Blazor WebAssembly (WASM) App using Visual Studio and more. +title: Getting started with SfPdfViewer in a Blazor WebAssembly (WASM) app | Syncfusion +description: Learn how to get started with the SfPdfViewer component in a Blazor WebAssembly (WASM) app using Visual Studio or Visual Studio Code. platform: document-processing control: SfPdfViewer documentation: ug --- -# View PDF files using PDF Viewer Component in the Blazor WASM app +# View PDF files using the PDF Viewer in a Blazor WebAssembly (WASM) app -In this section, we'll guide you through the process of adding Syncfusion® Blazor PDF Viewer component to your Blazor WebAssembly (WASM) app using Visual Studio and Visual Studio Code. We'll break it down into simple steps to make it easy to follow. Additionally, you can find a fully functional example project on our [GitHub repository](https://github.com/SyncfusionExamples/blazor-pdf-viewer-examples/tree/master/Getting%20Started/Client-side%20application). +This article describes how to add the Syncfusion® Blazor PDF Viewer component to a Blazor WebAssembly (WASM) app using Visual Studio or Visual Studio Code. A fully functional example project is available in the [GitHub repository](https://github.com/SyncfusionExamples/blazor-pdf-viewer-examples/tree/master/Getting%20Started/Client-side%20application). {% tabcontents %} @@ -19,7 +19,7 @@ In this section, we'll guide you through the process of adding Syncfusion® B * [System requirements for Blazor components](https://blazor.syncfusion.com/documentation/system-requirements) -* To use the PDF Viewer component in a Blazor WebAssembly application with SkiaSharp, make sure to have the required .NET workloads installed by executing the following commands in the command prompt. +* To use the PDF Viewer component in a Blazor WebAssembly application with SkiaSharp, ensure the required .NET workloads are installed by running the following commands: * dotnet workload install wasm-tools * dotnet workload install wasm-tools-net8 @@ -27,17 +27,17 @@ In this section, we'll guide you through the process of adding Syncfusion® B You can create a **Blazor WebAssembly App** using Visual Studio via [Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-7.0) or the [Syncfusion® Blazor Extension](https://blazor.syncfusion.com/documentation/visual-studio-integration/template-studio). -N> The PDF Viewer component is supported from .NET 6.0 onwards. +N> The PDF Viewer component is supported on .NET 6.0 and later. -## Install Syncfusion® Blazor SfPdfViewer and Themes NuGet in the App +## Install Syncfusion® Blazor SfPdfViewer and Themes NuGet packages in the app -To add **Blazor PDFViewer** component in the app, open the NuGet package manager in Visual Studio (*Tools → NuGet Package Manager → Manage NuGet Packages for Solution*), search and install +To add the Blazor PDF Viewer component to the app, open the NuGet Package Manager in Visual Studio (Tools → NuGet Package Manager → Manage NuGet Packages for Solution), then install * [Syncfusion.Blazor.SfPdfViewer](https://www.nuget.org/packages/Syncfusion.Blazor.SfPdfViewer) * [Syncfusion.Blazor.Themes](https://www.nuget.org/packages/Syncfusion.Blazor.Themes) * [SkiaSharp.Views.Blazor](https://www.nuget.org/packages/SkiaSharp.Views.Blazor) -N> On the Syncfusion® side, we are using SkiaSharp.Views.Blazor version 3.116.1. Please make sure to reference this version as well. +N> Syncfusion® uses SkiaSharp.Views.Blazor version 3.116.1. Ensure this version is referenced. {% endtabcontent %} @@ -55,7 +55,7 @@ N> On the Syncfusion® side, we are using Sk You can create a **Blazor WebAssembly App** using Visual Studio Code via [Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-7.0&pivots=vsc) or the [Syncfusion® Blazor Extension](https://blazor.syncfusion.com/documentation/visual-studio-code-integration/create-project). -Alternatively, you can create a WebAssembly application using the following command in the terminal(Ctrl+`). +Alternatively, create a WebAssembly application using the following command in the terminal (Ctrl+`). {% tabs %} @@ -68,13 +68,13 @@ cd BlazorApp {% endtabs %} -N> The PDF Viewer component is supported from .NET 6.0 onwards. +N> The PDF Viewer component is supported on .NET 6.0 and later. -## Install Syncfusion® Blazor NuGet Package in the App +## Install Syncfusion® Blazor NuGet packages in the app * Press Ctrl+` to open the integrated terminal in Visual Studio Code. * Ensure you’re in the project root directory where your `.csproj` file is located. -* Run the following command to install a [Syncfusion.Blazor.SfPdfViewer](https://www.nuget.org/packages/Syncfusion.Blazor.SfPdfViewer), [Syncfusion.Blazor.Themes](https://www.nuget.org/packages/Syncfusion.Blazor.Themes/) and [SkiaSharp.Views.Blazor](https://www.nuget.org/packages/SkiaSharp.Views.Blazor) NuGet package and ensure all dependencies are installed. +* Run the following commands to install the [Syncfusion.Blazor.SfPdfViewer](https://www.nuget.org/packages/Syncfusion.Blazor.SfPdfViewer), [Syncfusion.Blazor.Themes](https://www.nuget.org/packages/Syncfusion.Blazor.Themes/), and [SkiaSharp.Views.Blazor](https://www.nuget.org/packages/SkiaSharp.Views.Blazor) NuGet packages and ensure all dependencies are installed. {% tabs %} @@ -89,9 +89,9 @@ dotnet restore {% endtabs %} -N> On the Syncfusion® side, we are using SkiaSharp.Views.Blazor version 3.116.1. Please make sure to reference this version as well. +N> Syncfusion® uses SkiaSharp.Views.Blazor version 3.116.1. Ensure this version is referenced. -N> Syncfusion® Blazor components are available in [nuget.org](https://www.nuget.org/packages?q=syncfusion.blazor). Refer to [NuGet packages](https://blazor.syncfusion.com/documentation/nuget-packages) topic for available NuGet packages list with component details. +N> Syncfusion® Blazor components are available on [nuget.org](https://www.nuget.org/packages?q=syncfusion.blazor). See [NuGet packages](https://blazor.syncfusion.com/documentation/nuget-packages) for the list of available packages and component details. {% endtabcontent %} @@ -110,7 +110,7 @@ N> Syncfusion® Blazor components are availa {% endhighlight %} {% endtabs %} -* Register the Syncfusion® Blazor Service in the program.cs file. +* Register the Syncfusion® Blazor Service in the **~/Program.cs** file. {% tabs %} {% highlight C# tabtitle=".NET 6 & .NET 7 (~/Program.cs)" hl_lines="3 9 13" %} @@ -152,7 +152,7 @@ Add the following stylesheet and script to the head section of the **wwwroot/ind ## Adding Blazor PDF Viewer Component -Add the Syncfusion® PDF Viewer (Next Gen) component in the **~/Pages/Index.razor** file. +Add the Syncfusion® PDF Viewer (Next-Gen) component in the **~/Pages/Index.razor** file. {% tabs %} {% highlight razor %} @@ -167,18 +167,18 @@ Add the Syncfusion® PDF Viewer (Next Gen) c {% endhighlight %} {% endtabs %} -N> If you don't provide the [DocumentPath](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.PdfViewerBase.html#Syncfusion_Blazor_SfPdfViewer_PdfViewerBase_DocumentPath) property value, the PDF Viewer component will be rendered without loading the PDF document. Users can then use the **open** option from the toolbar to browse and open the PDF as required. +N> If the [DocumentPath](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.PdfViewerBase.html#Syncfusion_Blazor_SfPdfViewer_PdfViewerBase_DocumentPath) property is not set, the PDF Viewer renders without loading a PDF document. Users can use the **Open** option in the toolbar to browse and open a PDF as needed. ## Run the application -Run the application, and the PDF file will be displayed using Syncfusion® Blazor PDF Viewer component in your browser. +Run the application to display the PDF file in the Syncfusion® Blazor PDF Viewer component in the browser. -{% previewsample "https://blazorplayground.syncfusion.com/embed/hZVzNWqXLSZpnuzc?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" backgroundimage "[Blazor SfPdfViewer Component](gettingstarted-images/blazor-pdfviewer.png)" %} +{% previewsample "https://blazorplayground.syncfusion.com/embed/hZVzNWqXLSZpnuzc?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" backgroundimage "[Blazor WebAssembly SfPdfViewer rendering in browser](gettingstarted-images/blazor-pdfviewer.png)" %} ## See also -* [Getting Started with Blazor PDF Viewer Component in Blazor Server App](./server-side-application) +* [Getting started with the Blazor PDF Viewer in a Blazor Server app](./server-side-application) -* [Getting Started with Blazor PDF Viewer (Next Gen) Component in WSL mode](./wsl-application) +* [Getting started with the Blazor PDF Viewer in WSL mode](./wsl-application) * [.NET 9 Native Linking Issues with SkiaSharp and Emscripten 3.1.56](https://help.syncfusion.com/document-processing/faq/how-to-fix-skiasharp-native-reference-issue-in-blazor-net90-app) \ No newline at end of file diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/wsl-application.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/wsl-application.md index 696dbc816..e3c2c031b 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/wsl-application.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/wsl-application.md @@ -1,39 +1,39 @@ --- layout: post -title: Getting Started with SfPdfViewer in Blazor WSL mode | Syncfusion -description: Learn how to getting started with SfPdfViewer control in Blazor WSL (Windows Subsystem for Linux) mode. +title: Getting started with SfPdfViewer in Blazor WSL (Windows Subsystem for Linux) | Syncfusion +description: Learn how to run the SfPdfViewer control in a Blazor app using Windows Subsystem for Linux (WSL). platform: document-processing control: SfPdfViewer documentation: ug --- -# Getting Started with Blazor PDF Viewer in WSL mode +# Getting started with the Blazor PDF Viewer in WSL mode -To run the Syncfusion® Blazor PDF Viewer (Next Gen) component in WSL (Windows Subsystem for Linux) mode, follow these steps: +Use the following steps to run the Syncfusion® Blazor PDF Viewer (Next-Gen) component in WSL (Windows Subsystem for Linux) mode: -**Step 1:** Enable the Windows Subsystem for Linux and the Virtual Machine Platform. +**Step 1:** Enable Windows Subsystem for Linux and Virtual Machine Platform. -![Create-new-blazor-wsl-app](gettingstarted-images/turn-features.png) +![Windows Features dialog with WSL and Virtual Machine Platform enabled](gettingstarted-images/turn-features.png) -To enable the Windows Subsystem for Linux (WSL) and the Virtual Machine Platform on Windows, follow these steps: +To enable Windows Subsystem for Linux (WSL) and Virtual Machine Platform on Windows: -Open the Start menu and search for `Control Panel`. Click on `Programs`, then click on `Turn Windows features on or off`. Scroll down and select the boxes next to `Windows Subsystem for Linux` and `Virtual Machine Platform`. Finally, Click `OK` and restart your machine. +Open the Start menu and search for `Control Panel`. Select `Programs`, then choose `Turn Windows features on or off`. Select `Windows Subsystem for Linux` and `Virtual Machine Platform`. Click `OK` and restart the computer. -After restarting your computer, you can install a Linux distribution like Ubuntu from the Microsoft Store and execute Linux commands directly in Windows. +After restart, install a Linux distribution such as Ubuntu from the Microsoft Store and run Linux commands directly in Windows. -**Step 2:** Install the `Ubuntu` +**Step 2:** Install Ubuntu -![Create-new-blazor-wsl-app](gettingstarted-images/ubuntu-install.png) +![Ubuntu install page in Microsoft Store](gettingstarted-images/ubuntu-install.png) -Ubuntu can be installed on a Windows machine by the Microsoft Store, follow these steps: +To install Ubuntu from the Microsoft Store: -Open the Microsoft Store on your Windows machine. Search for `Ubuntu` in the Microsoft Store search bar. Click on the `Ubuntu` application and click the `Get` button to download and install the application. Once the installation is complete, click on the `Launch` button to start Ubuntu. This will install Ubuntu as a Windows Subsystem for Linux (WSL), which allows you to run a Linux environment directly on Windows without the need for a virtual machine. +Open the Microsoft Store and search for Ubuntu. Select Ubuntu, then choose Get to download and install. After installation, select Launch to start Ubuntu. This installs Ubuntu as a WSL distribution, enabling a Linux environment in Windows without a separate virtual machine. -On Ubuntu, create a new user with a username and password. +On first launch, create a new Ubuntu user by providing a username and password. -![Create-new-blazor-wsl-app](gettingstarted-images/username-password.png) +![Ubuntu first-run prompt for username and password](gettingstarted-images/username-password.png) -**Step 3:** Install the dotnet framework for running the WSL (Windows Subsystem for Linux) in the project by running the following code one by one.  +**Step 3:** Install the .NET SDK for WSL by running the following commands one by one. ``` wget https://packages.microsoft.com/config/ubuntu/22.10/packages-microsoft-prod.deb -O packages-microsoft-prod.deb @@ -47,11 +47,11 @@ On Ubuntu, create a new user with a username and password. ``` -Check the comment dotnet --info and it should come as follows. +Run dotnet --info. The output should resemble the following: ![Create-new-blazor-wsl-app](gettingstarted-images/dotnet-info.png) -If the above result is not shown, please run the comments below +If the expected result is not shown, run the following commands: ``` sudo apt remove dotnet* @@ -66,17 +66,17 @@ If the above result is not shown, please run the comments below dotnet dotnet --info ``` -**Step 4:** Now, run the server or webassembly sample in WSL (Windows Subsystem for Linux) mode and it will run our Blazor PDF Viewer component. +**Step 4:** Run the server or WebAssembly sample in WSL mode; the Blazor PDF Viewer component should load. -![WSL-Mode](gettingstarted-images/WSL-Mode.png) +![Blazor app running in WSL mode](gettingstarted-images/WSL-Mode.png) -N> If you encounter any issues while running in WSL (Windows Subsystem for Linux) mode, use the following instructions to resolve them. +N> If any issues occur while running in WSL mode, use the following instructions to resolve them. -If the sample does not load the PDF file and throws an exception. +If the sample does not load the PDF file and an exception is thrown: -![Create-new-blazor-wsl-app](gettingstarted-images/exception.png) +![Exception shown when PDF fails to load](gettingstarted-images/exception.png) -Then, in the Ubuntu command window, run the following commands one by one to install all necessary Blazor PDF Viewer dependencies for a Linux run. +In the Ubuntu terminal, run the following commands one by one to install the required Blazor PDF Viewer dependencies for Linux: ``` sudo apt-get install libfontconfig1 @@ -86,12 +86,12 @@ Then, in the Ubuntu command window, run the following commands one by one to ins ``` -Close the project, reopen it, and run it in WSL mode. It will run properly. +Close the project, reopen it, and run it in WSL mode. It should run properly. -![Create-new-blazor-wsl-app](gettingstarted-images/final.png) +![Blazor PDF Viewer running successfully in WSL mode](gettingstarted-images/final.png) ## See also -* [Getting Started with Blazor PDF Viewer Component in Blazor Server App](./server-side-application) +* [Getting started with the Blazor PDF Viewer in a Blazor Server app](./server-side-application) -* [Getting Started with Blazor PDF Viewer Component in Blazor WASM App](./web-assembly-application) +* [Getting started with the Blazor PDF Viewer in a Blazor WebAssembly app](./web-assembly-application) From 29a07be52ea5ac501c48ebba953e75108c5f47e3 Mon Sep 17 00:00:00 2001 From: Tamilselvan-Durairaj <153176971+Tamilselvan-Durairaj@users.noreply.github.com> Date: Tue, 23 Sep 2025 18:30:16 +0530 Subject: [PATCH 02/11] 983689: Resolve the CI failures --- .../blazor/deployment/aws-beanstalk-deployment.md | 6 +++--- .../blazor/getting-started/web-assembly-application.md | 2 +- .../PDF-Viewer/blazor/getting-started/wsl-application.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/deployment/aws-beanstalk-deployment.md b/Document-Processing/PDF/PDF-Viewer/blazor/deployment/aws-beanstalk-deployment.md index a971c1388..d093efce4 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/deployment/aws-beanstalk-deployment.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/deployment/aws-beanstalk-deployment.md @@ -1,7 +1,7 @@ --- layout: post -title: Deploy Blazor Server SfPdfViewer to AWS Elastic Beanstalk (Linux) | Syncfusion -description: Add the Syncfusion Blazor PDF Viewer (SfPdfViewer2) to a Blazor Server app and deploy it to AWS Elastic Beanstalk on Linux using Visual Studio. +title: Deploy Blazor SfPdfViewer to AWS Elastic Beanstalk | Syncfusion +description: Add the Syncfusion Blazor PDF Viewer to a Blazor Server app and deploy it to AWS Elastic Beanstalk on Linux. platform: document-processing control: SfPdfViewer documentation: ug @@ -110,7 +110,7 @@ Run the application to display the PDF file in the Syncfusion® Blazor PDF Vi ## Steps to publish as AWS Elastic Beanstalk 1. Right-click the project and select Publish to AWS Elastic Beanstalk (Legacy). -![Publish to AWS Elastic Beanstalk (Legacy) in Visual Studio](aws-benstalk-deployment-images/beanstalk-publish.png) +![Publish to AWS Elastic Beanstalk in Visual Studio](aws-benstalk-deployment-images/beanstalk-publish.png) 2. Select the deployment target Create a new application environment, and then click Next. ![Create a new application environment selection](aws-benstalk-deployment-images/beanstalk-instance.png) 3. Choose an environment name. The URL is assigned automatically—verify availability. If the URL is available, click Next; otherwise, change the URL and retry. diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md index f2844a475..27e1f6f56 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md @@ -1,7 +1,7 @@ --- layout: post title: Getting started with SfPdfViewer in a Blazor WebAssembly (WASM) app | Syncfusion -description: Learn how to get started with the SfPdfViewer component in a Blazor WebAssembly (WASM) app using Visual Studio or Visual Studio Code. +description: Learn how to get started with the SfPdfViewer component in a Blazor WebAssembly app. platform: document-processing control: SfPdfViewer documentation: ug diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/wsl-application.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/wsl-application.md index e3c2c031b..807b4966e 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/wsl-application.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/wsl-application.md @@ -1,6 +1,6 @@ --- layout: post -title: Getting started with SfPdfViewer in Blazor WSL (Windows Subsystem for Linux) | Syncfusion +title: Getting started with SfPdfViewer in Blazor WSL | Syncfusion description: Learn how to run the SfPdfViewer control in a Blazor app using Windows Subsystem for Linux (WSL). platform: document-processing control: SfPdfViewer From 67b186a6f6124308be5a6352a644b5e0033b9b4b Mon Sep 17 00:00:00 2001 From: Tamilselvan-Durairaj <153176971+Tamilselvan-Durairaj@users.noreply.github.com> Date: Tue, 23 Sep 2025 19:03:07 +0530 Subject: [PATCH 03/11] 983689: Changes for the CI failures --- .../PDF-Viewer/blazor/getting-started/deploy-maui-windows.md | 2 +- .../blazor/getting-started/web-assembly-application.md | 4 ++-- .../PDF/PDF-Viewer/blazor/getting-started/wsl-application.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/deploy-maui-windows.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/deploy-maui-windows.md index b733b67a2..abee6eafb 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/deploy-maui-windows.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/deploy-maui-windows.md @@ -1,7 +1,7 @@ --- layout: post title: Deploy SfPdfViewer in Blazor .NET MAUI on Windows | Syncfusion -description: Learn how to deploy the SfPdfViewer in a Blazor .NET MAUI application on Windows. +description: Learn how to deploy the Syncfusion Blazor SfPdfViewer in a Blazor .NET MAUI application on Windows. platform: document-processing control: SfPdfViewer documentation: ug diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md index 27e1f6f56..8fbad79ec 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md @@ -1,7 +1,7 @@ --- layout: post -title: Getting started with SfPdfViewer in a Blazor WebAssembly (WASM) app | Syncfusion -description: Learn how to get started with the SfPdfViewer component in a Blazor WebAssembly app. +title: Getting started with SfPdfViewer in a Blazor WASM app | Syncfusion +description: Learn how to get started with the SfPdfViewer component in a Blazor WebAssembly (WASM) app. platform: document-processing control: SfPdfViewer documentation: ug diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/wsl-application.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/wsl-application.md index 807b4966e..2ef7e4e7b 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/wsl-application.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/wsl-application.md @@ -1,7 +1,7 @@ --- layout: post title: Getting started with SfPdfViewer in Blazor WSL | Syncfusion -description: Learn how to run the SfPdfViewer control in a Blazor app using Windows Subsystem for Linux (WSL). +description: Learn how to run the Syncfusion Blazor SfPdfViewer control in a Blazor app using Windows Subsystem for Linux (WSL). platform: document-processing control: SfPdfViewer documentation: ug From 7b4ffc0df304ac5816bd17c4b6a43801a48ca52d Mon Sep 17 00:00:00 2001 From: Tamilselvan-Durairaj <153176971+Tamilselvan-Durairaj@users.noreply.github.com> Date: Tue, 23 Sep 2025 19:28:34 +0530 Subject: [PATCH 04/11] 983689: Update CI failure --- .../PDF-Viewer/blazor/getting-started/deploy-maui-windows.md | 2 +- .../blazor/getting-started/web-assembly-application.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/deploy-maui-windows.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/deploy-maui-windows.md index abee6eafb..7924a3f2b 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/deploy-maui-windows.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/deploy-maui-windows.md @@ -1,7 +1,7 @@ --- layout: post title: Deploy SfPdfViewer in Blazor .NET MAUI on Windows | Syncfusion -description: Learn how to deploy the Syncfusion Blazor SfPdfViewer in a Blazor .NET MAUI application on Windows. +description: Learn how to deploy the Syncfusion Blazor SfPdfViewer component in a Blazor .NET MAUI application on Windows. platform: document-processing control: SfPdfViewer documentation: ug diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md index 8fbad79ec..1e0d21b2b 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md @@ -1,7 +1,7 @@ --- layout: post title: Getting started with SfPdfViewer in a Blazor WASM app | Syncfusion -description: Learn how to get started with the SfPdfViewer component in a Blazor WebAssembly (WASM) app. +description: Learn how to get started with the Syncfusion Blazor SfPdfViewer component in a Blazor WebAssembly (WASM) app. platform: document-processing control: SfPdfViewer documentation: ug From 3a1c3c2dac9a3bd218e448243c6ee689ecc7a328 Mon Sep 17 00:00:00 2001 From: Tamilselvan-Durairaj <153176971+Tamilselvan-Durairaj@users.noreply.github.com> Date: Thu, 25 Sep 2025 15:06:24 +0530 Subject: [PATCH 05/11] 983689: Update the next version for the pdfviewer documentation --- .../deployment/aws-beanstalk-deployment.md | 2 +- .../getting-started/deploy-maui-windows.md | 2 +- .../getting-started/server-side-application.md | 16 +++++++++------- .../getting-started/web-assembly-application.md | 4 ++-- 4 files changed, 13 insertions(+), 11 deletions(-) diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/deployment/aws-beanstalk-deployment.md b/Document-Processing/PDF/PDF-Viewer/blazor/deployment/aws-beanstalk-deployment.md index d093efce4..b09eb0d96 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/deployment/aws-beanstalk-deployment.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/deployment/aws-beanstalk-deployment.md @@ -19,7 +19,7 @@ This article describes how to add the Syncfusion® Blazor PDF Viewer componen Create a new Blazor Server app and name it **PDFViewerGettingStarted**. -N> The PDF Viewer component is supported on .NET 6.0 and later. +N> The PDF Viewer component is supported on .NET 8.0 and later. ## Install Blazor PDF Viewer NuGet package in Blazor Server App diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/deploy-maui-windows.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/deploy-maui-windows.md index 7924a3f2b..18c0f5e23 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/deploy-maui-windows.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/deploy-maui-windows.md @@ -19,7 +19,7 @@ To use the .NET MAUI project templates, install the Mobile development with .NET Create a new Blazor .NET MAUI app and name it **PDFViewerGettingStarted**. -N> The PDF Viewer component is supported on .NET 6.0 and later. +N> The PDF Viewer component is supported on .NET 8.0 and later. ## Install PDF Viewer NuGet packages in the Blazor .NET MAUI app diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/server-side-application.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/server-side-application.md index 7c2c1ef7f..600debbbd 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/server-side-application.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/server-side-application.md @@ -23,7 +23,7 @@ This article describes how to add the Syncfusion® Blazor PDF Viewer componen You can create a **Blazor Server App** using Visual Studio via [Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-7.0&pivots=vs) or the [Syncfusion® Blazor Extension](https://blazor.syncfusion.com/documentation/visual-studio-integration/template-studio). -N> The PDF Viewer component is supported on .NET 6.0 and later. +N> The PDF Viewer component is supported on .NET 8.0 and later. ## Install Syncfusion® Blazor SfPdfViewer and Themes NuGet packages in the app @@ -32,13 +32,13 @@ To add **Blazor PDFViewer** component in the app, open the NuGet package manager {% tabs %} {% highlight C# tabtitle="Package Manager" %} -Install-Package Syncfusion.Blazor.SfPdfViewer -Version {{ site.releaseversion }} -Install-Package Syncfusion.Blazor.Themes -Version {{ site.releaseversion }} +Install-Package Syncfusion.Blazor.SfPdfViewer -Version 28.2.12 +Install-Package Syncfusion.Blazor.Themes -Version 28.2.12 {% endhighlight %} {% endtabs %} -N> Syncfusion® Blazor components are available in [nuget.org](https://www.nuget.org/packages?q=syncfusion.blazor). Refer to [NuGet packages](https://blazor.syncfusion.com/documentation/nuget-packages) topic for available NuGet packages list with component details. +N> Syncfusion® Blazor components are available in [nuget.org](https://www.nuget.org/packages?q=syncfusion.blazor). Refer to [NuGet packages](https://blazor.syncfusion.com/documentation/nuget-packages) topic for available NuGet packages list with component details. For .NET 6 and .NET 7, use version 28.2.12 or earlier version. {% endtabcontent %} @@ -65,7 +65,7 @@ cd BlazorApp {% endtabs %} -N> The PDF Viewer component is supported on .NET 6.0 and later. +N> The PDF Viewer component is supported on .NET 8.0 and later. ## Install Syncfusion® Blazor SfPdfViewer and Themes NuGet packages in the app @@ -77,8 +77,8 @@ N> The PDF Viewer component is supported on .NET 6.0 and later. {% highlight c# tabtitle="Package Manager" %} -dotnet add package Syncfusion.Blazor.SfPdfViewer -v {{ site.releaseversion }} -dotnet add package Syncfusion.Blazor.Themes -v {{ site.releaseversion }} +dotnet add package Syncfusion.Blazor.SfPdfViewer -v 28.2.12 +dotnet add package Syncfusion.Blazor.Themes -v 28.2.12 dotnet restore {% endhighlight %} @@ -91,6 +91,8 @@ N> Syncfusion® Blazor components are availa {% endtabcontents %} +N> For .NET 6 and .NET 7, use version 28.2.12 or earlier version. + ## Register Syncfusion® Blazor Service * In the **~/_Imports.razor** file, add the following namespaces: diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md index 1e0d21b2b..32dd1280b 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md @@ -27,7 +27,7 @@ This article describes how to add the Syncfusion® Blazor PDF Viewer componen You can create a **Blazor WebAssembly App** using Visual Studio via [Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-7.0) or the [Syncfusion® Blazor Extension](https://blazor.syncfusion.com/documentation/visual-studio-integration/template-studio). -N> The PDF Viewer component is supported on .NET 6.0 and later. +N> The PDF Viewer component is supported on .NET 8.0 and later. ## Install Syncfusion® Blazor SfPdfViewer and Themes NuGet packages in the app @@ -68,7 +68,7 @@ cd BlazorApp {% endtabs %} -N> The PDF Viewer component is supported on .NET 6.0 and later. +N> The PDF Viewer component is supported on .NET 8.0 and later. ## Install Syncfusion® Blazor NuGet packages in the app From 83cded789da7582e2897a6e9104ee3a2239e6d18 Mon Sep 17 00:00:00 2001 From: Tamilselvan-Durairaj <153176971+Tamilselvan-Durairaj@users.noreply.github.com> Date: Thu, 25 Sep 2025 17:18:57 +0530 Subject: [PATCH 06/11] 983689: Update the getting started for smart pdfviewer --- .../blazor/getting-started/maui-blazor-app.md | 14 +++++++++++--- .../blazor/getting-started/web-app.md | 4 ++-- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/maui-blazor-app.md b/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/maui-blazor-app.md index ce43c156e..4186d9e40 100644 --- a/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/maui-blazor-app.md +++ b/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/maui-blazor-app.md @@ -21,10 +21,18 @@ Create a new Blazor MAUI app and by selecting the template **.NET MAUI Blazor Hy ## Install Smart PDF Viewer NuGet package in Blazor Maui App -Add the following NuGet packages into the Blazor Maui app. +To add NuGet packages into the Blazor Maui app, open the NuGet package manager in Visual Studio (Tools → NuGet Package Manager → Manage NuGet Packages for Solution), search and install [Syncfusion.Blazor.SfSmartPdfViewer](https://www.nuget.org/packages/Syncfusion.Blazor.SfSmartPdfViewer) and [Syncfusion.Blazor.Themes](https://www.nuget.org/packages/Syncfusion.Blazor.Themes/). -* [Syncfusion.Blazor.SfSmartPdfViewer](https://www.nuget.org/packages/Syncfusion.Blazor.SfSmartPdfViewer) -* [Syncfusion.Blazor.Themes](https://www.nuget.org/packages/Syncfusion.Blazor.Themes) +Alternatively, you can utilize the following package manager command to achieve the same. + +{% tabs %} +{% highlight razor tabtitle="Package Manager" %} + +Install-Package Syncfusion.Blazor.SfSmartPdfViewer -Version {{ site.releaseversion }} +Install-Package Syncfusion.Blazor.Themes -Version {{ site.releaseversion }} + +{% endhighlight %} +{% endtabs %} ## Register Syncfusion® Blazor Service diff --git a/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/web-app.md b/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/web-app.md index 10fcb1a7d..8d681d99b 100644 --- a/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/web-app.md +++ b/Document-Processing/PDF/Smart-PDF-Viewer/blazor/getting-started/web-app.md @@ -35,8 +35,8 @@ Alternatively, you can utilize the following package manager command to achieve {% tabs %} {% highlight razor tabtitle="Package Manager" %} -Install-Package Syncfusion.Blazor.SfSmartPdfViewer -Version 31.1.17 -Install-Package Syncfusion.Blazor.Themes -Version 31.1.17 +Install-Package Syncfusion.Blazor.SfSmartPdfViewer -Version {{ site.releaseversion }} +Install-Package Syncfusion.Blazor.Themes -Version {{ site.releaseversion }} {% endhighlight %} {% endtabs %} From df1210c0025d998dec8bb4134cc45134e4c02961 Mon Sep 17 00:00:00 2001 From: Tamilselvan-Durairaj <153176971+Tamilselvan-Durairaj@users.noreply.github.com> Date: Thu, 25 Sep 2025 19:29:42 +0530 Subject: [PATCH 07/11] 983689: Changes for removing the server side application getting started --- Document-Processing-toc.html | 1 - .../server-side-application.md | 190 ------------------ .../PDF/PDF-Viewer/blazor/migration.md | 2 +- .../pdfviewer-server-docker-image-overview.md | 2 +- .../Word/Word-Processor/angular/overview.md | 2 +- ...-processor-server-docker-image-overview.md | 2 +- .../Word-Processor/asp-net-core/overview.md | 2 +- .../Word-Processor/asp-net-mvc/overview.md | 2 +- .../Word-Processor/javascript-es5/overview.md | 2 +- ...-processor-server-docker-image-overview.md | 2 +- .../Word-Processor/javascript-es6/overview.md | 2 +- ...-processor-server-docker-image-overview.md | 2 +- .../Word/Word-Processor/react/overview.md | 2 +- ...-processor-server-docker-image-overview.md | 2 +- .../Word/Word-Processor/vue/overview.md | 2 +- ...-processor-server-docker-image-overview.md | 2 +- 16 files changed, 14 insertions(+), 205 deletions(-) delete mode 100644 Document-Processing/PDF/PDF-Viewer/blazor/getting-started/server-side-application.md diff --git a/Document-Processing-toc.html b/Document-Processing-toc.html index 14bbb0eb0..0bb0a6d05 100644 --- a/Document-Processing-toc.html +++ b/Document-Processing-toc.html @@ -478,7 +478,6 @@
  • Getting Started diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/server-side-application.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/server-side-application.md deleted file mode 100644 index 600debbbd..000000000 --- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/server-side-application.md +++ /dev/null @@ -1,190 +0,0 @@ ---- -layout: post -title: Getting started with SfPdfViewer in a Blazor Server app | Syncfusion -description: Learn how to get started with the SfPdfViewer control in a Blazor Server application to view, comment on, and fill PDF forms. -platform: document-processing -control: SfPdfViewer -documentation: ug ---- - -# View PDF files using the PDF Viewer in a Blazor Server app - -This article describes how to add the Syncfusion® Blazor PDF Viewer component to a Blazor Server app using Visual Studio or Visual Studio Code. A fully functional example project is available in the [GitHub repository](https://github.com/SyncfusionExamples/Blazor-Getting-Started-Examples/tree/main/PDFViewer%20%202/BlazorServerApp/PDFViewerSample). - -{% tabcontents %} - -{% tabcontent Visual Studio %} - -## Prerequisites - -* [System requirements for Blazor components](https://blazor.syncfusion.com/documentation/system-requirements) - -## Create a new Blazor App in Visual Studio - -You can create a **Blazor Server App** using Visual Studio via [Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-7.0&pivots=vs) or the [Syncfusion® Blazor Extension](https://blazor.syncfusion.com/documentation/visual-studio-integration/template-studio). - -N> The PDF Viewer component is supported on .NET 8.0 and later. - -## Install Syncfusion® Blazor SfPdfViewer and Themes NuGet packages in the app - -To add **Blazor PDFViewer** component in the app, open the NuGet package manager in Visual Studio (*Tools → NuGet Package Manager → Manage NuGet Packages for Solution*), search and install [Syncfusion.Blazor.SfPdfViewer](https://www.nuget.org/packages/Syncfusion.Blazor.SfPdfViewer) and [Syncfusion.Blazor.Themes](https://www.nuget.org/packages/Syncfusion.Blazor.Themes/). Alternatively, you can utilize the following package manager command to achieve the same. - -{% tabs %} -{% highlight C# tabtitle="Package Manager" %} - -Install-Package Syncfusion.Blazor.SfPdfViewer -Version 28.2.12 -Install-Package Syncfusion.Blazor.Themes -Version 28.2.12 - -{% endhighlight %} -{% endtabs %} - -N> Syncfusion® Blazor components are available in [nuget.org](https://www.nuget.org/packages?q=syncfusion.blazor). Refer to [NuGet packages](https://blazor.syncfusion.com/documentation/nuget-packages) topic for available NuGet packages list with component details. For .NET 6 and .NET 7, use version 28.2.12 or earlier version. - -{% endtabcontent %} - -{% tabcontent Visual Studio Code %} - -## Prerequisites - -* [System requirements for Blazor components](https://blazor.syncfusion.com/documentation/system-requirements) - -## Create a new Blazor App in Visual Studio Code - -You can create a **Blazor Server App** using Visual Studio Code via [Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-7.0&pivots=vsc) or the [Syncfusion® Blazor Extension](https://blazor.syncfusion.com/documentation/visual-studio-code-integration/create-project). - -Alternatively, create a server application using the following command in the terminal (Ctrl+`). - -{% tabs %} - -{% highlight c# tabtitle="Blazor Server App" %} - -dotnet new blazorserver -o BlazorApp -cd BlazorApp - -{% endhighlight %} - -{% endtabs %} - -N> The PDF Viewer component is supported on .NET 8.0 and later. - -## Install Syncfusion® Blazor SfPdfViewer and Themes NuGet packages in the app - -* Press Ctrl+` to open the integrated terminal in Visual Studio Code. -* Ensure you’re in the project root directory where your `.csproj` file is located. -* Run the following commands to install the [Syncfusion.Blazor.SfPdfViewer](https://www.nuget.org/packages/Syncfusion.Blazor.SfPdfViewer) and [Syncfusion.Blazor.Themes](https://www.nuget.org/packages/Syncfusion.Blazor.Themes/) NuGet packages and ensure all dependencies are installed. - -{% tabs %} - -{% highlight c# tabtitle="Package Manager" %} - -dotnet add package Syncfusion.Blazor.SfPdfViewer -v 28.2.12 -dotnet add package Syncfusion.Blazor.Themes -v 28.2.12 -dotnet restore - -{% endhighlight %} - -{% endtabs %} - -N> Syncfusion® Blazor components are available in [nuget.org](https://www.nuget.org/packages?q=syncfusion.blazor). Refer to [NuGet packages](https://blazor.syncfusion.com/documentation/nuget-packages) topic for available NuGet packages list with component details. - -{% endtabcontent %} - -{% endtabcontents %} - -N> For .NET 6 and .NET 7, use version 28.2.12 or earlier version. - -## Register Syncfusion® Blazor Service - -* In the **~/_Imports.razor** file, add the following namespaces: - -{% tabs %} -{% highlight razor tabtitle="~/_Imports.razor" %} - -@using Syncfusion.Blazor; -@using Syncfusion.Blazor.SfPdfViewer; - -{% endhighlight %} -{% endtabs %} - -* Register the Syncfusion® Blazor Service in the **~/Program.cs** file. - -{% tabs %} -{% highlight c# tabtitle="~/Program.cs" hl_lines="3 11 14" %} - -using Microsoft.AspNetCore.Components; -using Microsoft.AspNetCore.Components.Web; -using Syncfusion.Blazor; - -var builder = WebApplication.CreateBuilder(args); - -// Add services to the container. -builder.Services.AddRazorPages(); -builder.Services.AddServerSideBlazor(); - -builder.Services.AddSignalR(o => { o.MaximumReceiveMessageSize = 102400000; }); - -// Add Syncfusion Blazor service to the container. -builder.Services.AddSyncfusionBlazor(); - -var app = builder.Build(); - -{% endhighlight %} -{% endtabs %} - -N> [Processing Large Files Without Increasing Maximum Message Size in SfPdfViewer Component](../how-to/processing-large-files-without-increasing-maximum-message-size) - -## Adding stylesheet and script - -Add the following stylesheet and script to the head section. The theme stylesheet and script can be accessed from NuGet through [Static Web Assets](https://blazor.syncfusion.com/documentation/appearance/themes#static-web-assets). Reference the stylesheet and script in the `` of the main page as follows: - -* For **.NET 6** Blazor Server app, include it in **~/Pages/_Layout.cshtml** file. - -* For **.NET 7** Blazor Server app, include it in the **~/Pages/_Host.cshtml** file. - -{% tabs %} -{% highlight cshtml %} - - - - - - - - -{% endhighlight %} -{% endtabs %} - -## Adding Blazor PDF Viewer Component - -Add the Syncfusion® PDF Viewer (Next-Gen) component in the **~/Pages/Index.razor** file. - -{% tabs %} -{% highlight razor %} - -@page "/" - - - - -{% endhighlight %} -{% endtabs %} - -N> If the [DocumentPath](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.SfPdfViewer.PdfViewerBase.html#Syncfusion_Blazor_SfPdfViewer_PdfViewerBase_DocumentPath) property is not set, the PDF Viewer renders without loading a PDF document. Users can use the **Open** option in the toolbar to browse and open a PDF as needed. - -## Run the application - -Run the application to display the PDF file in the Syncfusion® Blazor PDF Viewer component in the browser. - -{% previewsample "https://blazorplayground.syncfusion.com/embed/hZVzNWqXLSZpnuzc?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" backgroundimage "[Blazor Server SfPdfViewer rendering in browser](gettingstarted-images/blazor-pdfviewer.png)" %} - -## See also - -* [Getting Started with Blazor PDF Viewer Component in Blazor WASM App](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/blazor/getting-started/web-assembly-application) - -* [Getting Started with Blazor PDF Viewer Component in WSL mode](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/blazor/getting-started/wsl-application) - -* [Learn different ways to add script reference in Blazor Application](https://blazor.syncfusion.com/documentation/common/adding-script-references) - -* [Processing Large Files Without Increasing Maximum Message Size in SfPdfViewer Component](../how-to/processing-large-files-without-increasing-maximum-message-size) \ No newline at end of file diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/migration.md b/Document-Processing/PDF/PDF-Viewer/blazor/migration.md index a567040ff..005dc2018 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/migration.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/migration.md @@ -225,6 +225,6 @@ N> When hosting in certain environments (for example, Azure App Service), use [S ## See also -* [Getting Started with Blazor SfPdfViewer Component in Blazor Server App](./getting-started/server-side-application) +* [Getting Started with Blazor SfPdfViewer Component in Blazor Webapp Server App](./getting-started/web-app) * [Getting Started with Blazor SfPdfViewer Component in Blazor WASM App](./getting-started/web-assembly-application) \ No newline at end of file diff --git a/Document-Processing/PDF/PDF-Viewer/javascript-es5/server-deployment/pdfviewer-server-docker-image-overview.md b/Document-Processing/PDF/PDF-Viewer/javascript-es5/server-deployment/pdfviewer-server-docker-image-overview.md index d0d05cb1c..a1bcf0293 100644 --- a/Document-Processing/PDF/PDF-Viewer/javascript-es5/server-deployment/pdfviewer-server-docker-image-overview.md +++ b/Document-Processing/PDF/PDF-Viewer/javascript-es5/server-deployment/pdfviewer-server-docker-image-overview.md @@ -135,4 +135,4 @@ services: - "6001:80" ``` -Refer to these getting started pages to create a PDF Viewer in [`Angular`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/angular/getting-started), [`React`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started), [`Vue`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/vue/getting-started), [`ASP.NET MVC`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/asp-net-mvc/getting-started), [`ASP.NET Core`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/asp-net-core/getting-started), and [`Blazor`](https://blazor.syncfusion.com/documentation/pdfviewer/getting-started/server-side-application). \ No newline at end of file +Refer to these getting started pages to create a PDF Viewer in [`Angular`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/angular/getting-started), [`React`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started), [`Vue`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/vue/getting-started), [`ASP.NET MVC`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/asp-net-mvc/getting-started), [`ASP.NET Core`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/asp-net-core/getting-started), and [`Blazor`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/blazor/getting-started/web-app). \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/angular/overview.md b/Document-Processing/Word/Word-Processor/angular/overview.md index 7e05c6417..ff6e6028e 100644 --- a/Document-Processing/Word/Word-Processor/angular/overview.md +++ b/Document-Processing/Word/Word-Processor/angular/overview.md @@ -42,7 +42,7 @@ The Document Editor component is used to create, edit, view, and print Word docu * [Vue](../vue/getting-started) * [ASP.NET Core](../asp-net-core/getting-started-core) * [ASP.NET MVC](../asp-net-mvc/getting-started) -* [Blazor](../blazor/getting-started/server-side-application) +* [Blazor](../blazor/getting-started/web-app) ### Supported platforms for server-side dependencies diff --git a/Document-Processing/Word/Word-Processor/angular/server-deployment/word-processor-server-docker-image-overview.md b/Document-Processing/Word/Word-Processor/angular/server-deployment/word-processor-server-docker-image-overview.md index 0c519e4d1..fcaebdc14 100644 --- a/Document-Processing/Word/Word-Processor/angular/server-deployment/word-processor-server-docker-image-overview.md +++ b/Document-Processing/Word/Word-Processor/angular/server-deployment/word-processor-server-docker-image-overview.md @@ -175,4 +175,4 @@ export class AppComponent { } ``` -Refer to these getting started pages to create a Word Processor in [`Typescript`](../../javascript-es6/getting-started), [`React`](../../react/getting-started), [`Vue`](../../vue/getting-started), [`ASP.NET MVC`](../../asp-net-mvc/getting-started), [`ASP.NET Core`](../../asp-net-core/getting-started-core), and [`Blazor`](../../blazor/getting-started/server-side-application). \ No newline at end of file +Refer to these getting started pages to create a Word Processor in [`Typescript`](../../javascript-es6/getting-started), [`React`](../../react/getting-started), [`Vue`](../../vue/getting-started), [`ASP.NET MVC`](../../asp-net-mvc/getting-started), [`ASP.NET Core`](../../asp-net-core/getting-started-core), and [`Blazor`](../../blazor/getting-started/web-app). \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/asp-net-core/overview.md b/Document-Processing/Word/Word-Processor/asp-net-core/overview.md index 035bb953d..a764b7531 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-core/overview.md +++ b/Document-Processing/Word/Word-Processor/asp-net-core/overview.md @@ -42,4 +42,4 @@ The Document Editor component is used to create, edit, view, and print Word docu * [Vue](../vue/getting-started) * [ASP.NET Core](../asp-net-core/getting-started-core) * [ASP.NET MVC](../asp-net-mvc/getting-started) -* [Blazor](../blazor/getting-started/server-side-application) \ No newline at end of file +* [Blazor](../blazor/getting-started/web-app) \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/overview.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/overview.md index 81cf86610..fb41bdf0c 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/overview.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/overview.md @@ -42,4 +42,4 @@ The Document Editor component is used to create, edit, view, and print Word docu * [Vue](../vue/getting-started) * [ASP.NET Core](../asp-net-core/getting-started-core) * [ASP.NET MVC](../asp-net-mvc/getting-started) -* [Blazor](../blazor/getting-started/server-side-application) \ No newline at end of file +* [Blazor](../blazor/getting-started/web-app) \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/javascript-es5/overview.md b/Document-Processing/Word/Word-Processor/javascript-es5/overview.md index 8806430c0..56d815e76 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es5/overview.md +++ b/Document-Processing/Word/Word-Processor/javascript-es5/overview.md @@ -44,7 +44,7 @@ The Document Editor component is used to create, edit, view, and print Word docu * [Vue](../vue/getting-started) * [ASP.NET Core](../asp-net-core/getting-started-core) * [ASP.NET MVC](../asp-net-mvc/getting-started) -* [Blazor](../blazor/getting-started/server-side-application) +* [Blazor](../blazor/getting-started/web-app) ### Supported platforms for server-side dependencies diff --git a/Document-Processing/Word/Word-Processor/javascript-es5/server-deployment/word-processor-server-docker-image-overview.md b/Document-Processing/Word/Word-Processor/javascript-es5/server-deployment/word-processor-server-docker-image-overview.md index 2d7632562..7915868e6 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es5/server-deployment/word-processor-server-docker-image-overview.md +++ b/Document-Processing/Word/Word-Processor/javascript-es5/server-deployment/word-processor-server-docker-image-overview.md @@ -227,4 +227,4 @@ container.created = function () { container.appendTo('#container'); ``` -Refer to these getting started pages to create a Word Processor in [`Angular`](../../angular/getting-started), [`React`](../../react/getting-started), [`Vue`](../../vue/getting-started), [`ASP.NET MVC`](../../asp-net-mvc/getting-started), [`ASP.NET Core`](../../asp-net-core/getting-started-core), and [`Blazor`](../../blazor/getting-started/server-side-application). +Refer to these getting started pages to create a Word Processor in [`Angular`](../../angular/getting-started), [`React`](../../react/getting-started), [`Vue`](../../vue/getting-started), [`ASP.NET MVC`](../../asp-net-mvc/getting-started), [`ASP.NET Core`](../../asp-net-core/getting-started-core), and [`Blazor`](../../blazor/getting-started/web-app). diff --git a/Document-Processing/Word/Word-Processor/javascript-es6/overview.md b/Document-Processing/Word/Word-Processor/javascript-es6/overview.md index b60ec21a2..b663f5c49 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es6/overview.md +++ b/Document-Processing/Word/Word-Processor/javascript-es6/overview.md @@ -44,7 +44,7 @@ The Document Editor component is used to create, edit, view, and print Word docu * [Vue](../vue/getting-started) * [ASP.NET Core](../asp-net-core/getting-started-core) * [ASP.NET MVC](../asp-net-mvc/getting-started) -* [Blazor](../blazor/getting-started/server-side-application) +* [Blazor](../blazor/getting-started/web-app) ### Supported platforms for server-side dependencies diff --git a/Document-Processing/Word/Word-Processor/javascript-es6/server-deployment/word-processor-server-docker-image-overview.md b/Document-Processing/Word/Word-Processor/javascript-es6/server-deployment/word-processor-server-docker-image-overview.md index 242be21c1..864eec5f3 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es6/server-deployment/word-processor-server-docker-image-overview.md +++ b/Document-Processing/Word/Word-Processor/javascript-es6/server-deployment/word-processor-server-docker-image-overview.md @@ -227,4 +227,4 @@ container.created = function () { container.appendTo('#container'); ``` -Refer to these getting started pages to create a Word Processor in [`Angular`](https://ej2.syncfusion.com/angular/documentation/document-editor/getting-started), [`React`](https://ej2.syncfusion.com/react/documentation/document-editor/getting-started), [`Vue`](https://ej2.syncfusion.com/vue/documentation/document-editor/getting-started), [`ASP.NET MVC`](https://ej2.syncfusion.com/aspnetmvc/documentation/document-editor/getting-started), [`ASP.NET Core`](https://ej2.syncfusion.com/aspnetcore/documentation/document-editor/getting-started-core), and [`Blazor`](../../blazor/getting-started/server-side-application). +Refer to these getting started pages to create a Word Processor in [`Angular`](https://ej2.syncfusion.com/angular/documentation/document-editor/getting-started), [`React`](https://ej2.syncfusion.com/react/documentation/document-editor/getting-started), [`Vue`](https://ej2.syncfusion.com/vue/documentation/document-editor/getting-started), [`ASP.NET MVC`](https://ej2.syncfusion.com/aspnetmvc/documentation/document-editor/getting-started), [`ASP.NET Core`](https://ej2.syncfusion.com/aspnetcore/documentation/document-editor/getting-started-core), and [`Blazor`](../../blazor/getting-started/web-app). diff --git a/Document-Processing/Word/Word-Processor/react/overview.md b/Document-Processing/Word/Word-Processor/react/overview.md index 69b84c0b7..dd0b8e694 100644 --- a/Document-Processing/Word/Word-Processor/react/overview.md +++ b/Document-Processing/Word/Word-Processor/react/overview.md @@ -42,7 +42,7 @@ The Document Editor component is used to create, edit, view, and print Word docu * [Vue](../vue/getting-started) * [ASP.NET Core](../asp-net-core/getting-started-core) * [ASP.NET MVC](../asp-net-mvc/getting-started) -* [Blazor](../blazor/getting-started/server-side-application) +* [Blazor](../blazor/getting-started/web-app) ### Supported platforms for server-side dependencies diff --git a/Document-Processing/Word/Word-Processor/react/server-deployment/word-processor-server-docker-image-overview.md b/Document-Processing/Word/Word-Processor/react/server-deployment/word-processor-server-docker-image-overview.md index b73906e4c..0334e1964 100644 --- a/Document-Processing/Word/Word-Processor/react/server-deployment/word-processor-server-docker-image-overview.md +++ b/Document-Processing/Word/Word-Processor/react/server-deployment/word-processor-server-docker-image-overview.md @@ -178,4 +178,4 @@ ReactDOM.render(, document.getElementById('sample')); ``` -Refer to these getting started pages to create a Word Processor in [`Typescript`](../../javascript-es6/getting-started), [`Angular`](../../angular/getting-started), [`Vue`](../../vue/getting-started), [`ASP.NET MVC`](../../asp-net-mvc/getting-started), [`ASP.NET Core`](../../asp-net-core/getting-started-core), and [`Blazor`](../../blazor/getting-started/server-side-application). \ No newline at end of file +Refer to these getting started pages to create a Word Processor in [`Typescript`](../../javascript-es6/getting-started), [`Angular`](../../angular/getting-started), [`Vue`](../../vue/getting-started), [`ASP.NET MVC`](../../asp-net-mvc/getting-started), [`ASP.NET Core`](../../asp-net-core/getting-started-core), and [`Blazor`](../../blazor/getting-started/web-app). \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/vue/overview.md b/Document-Processing/Word/Word-Processor/vue/overview.md index 429fc88e4..162749e7f 100644 --- a/Document-Processing/Word/Word-Processor/vue/overview.md +++ b/Document-Processing/Word/Word-Processor/vue/overview.md @@ -41,7 +41,7 @@ The Document Editor component is used to create, edit, view, and print Word docu * [Vue](../vue/getting-started) * [ASP.NET Core](../asp-net-core/getting-started-core) * [ASP.NET MVC](../asp-net-mvc/getting-started) -* [Blazor](../blazor/getting-started/server-side-application) +* [Blazor](../blazor/getting-started/web-app) ### Supported platforms for server-side dependencies diff --git a/Document-Processing/Word/Word-Processor/vue/server-deployment/word-processor-server-docker-image-overview.md b/Document-Processing/Word/Word-Processor/vue/server-deployment/word-processor-server-docker-image-overview.md index 50404a430..35413592d 100644 --- a/Document-Processing/Word/Word-Processor/vue/server-deployment/word-processor-server-docker-image-overview.md +++ b/Document-Processing/Word/Word-Processor/vue/server-deployment/word-processor-server-docker-image-overview.md @@ -224,4 +224,4 @@ export default { {% endhighlight %} {% endtabs %} -Refer to these getting started pages to create a Word Processor in [`Typescript`](../../javascript-es6/getting-started), [`React`](../../react/getting-started), [`Vue`](../../vue/getting-started), [`ASP.NET MVC`](../../asp-net-mvc/getting-started), [`ASP.NET Core`](../../asp-net-core/getting-started-core), and [`Blazor`](../../blazor/getting-started/server-side-application). \ No newline at end of file +Refer to these getting started pages to create a Word Processor in [`Typescript`](../../javascript-es6/getting-started), [`React`](../../react/getting-started), [`Vue`](../../vue/getting-started), [`ASP.NET MVC`](../../asp-net-mvc/getting-started), [`ASP.NET Core`](../../asp-net-core/getting-started-core), and [`Blazor`](../../blazor/getting-started/web-app). \ No newline at end of file From 9d0da126a8c02fd8d010435a94805fb94924135d Mon Sep 17 00:00:00 2001 From: Tamilselvan-Durairaj <153176971+Tamilselvan-Durairaj@users.noreply.github.com> Date: Thu, 25 Sep 2025 22:58:36 +0530 Subject: [PATCH 08/11] 983689: Revert the changes --- Document-Processing/PDF/PDF-Viewer/blazor/migration.md | 2 +- Document-Processing/Word/Word-Processor/angular/overview.md | 2 +- .../word-processor-server-docker-image-overview.md | 2 +- .../Word/Word-Processor/asp-net-core/overview.md | 2 +- Document-Processing/Word/Word-Processor/asp-net-mvc/overview.md | 2 +- .../Word/Word-Processor/javascript-es5/overview.md | 2 +- .../word-processor-server-docker-image-overview.md | 2 +- .../Word/Word-Processor/javascript-es6/overview.md | 2 +- .../word-processor-server-docker-image-overview.md | 2 +- Document-Processing/Word/Word-Processor/react/overview.md | 2 +- .../word-processor-server-docker-image-overview.md | 2 +- Document-Processing/Word/Word-Processor/vue/overview.md | 2 +- .../word-processor-server-docker-image-overview.md | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/migration.md b/Document-Processing/PDF/PDF-Viewer/blazor/migration.md index 005dc2018..a1f306d76 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/migration.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/migration.md @@ -225,6 +225,6 @@ N> When hosting in certain environments (for example, Azure App Service), use [S ## See also -* [Getting Started with Blazor SfPdfViewer Component in Blazor Webapp Server App](./getting-started/web-app) +* [Getting Started with Blazor SfPdfViewer Component in Blazor Web app Server App](./getting-started/web-app) * [Getting Started with Blazor SfPdfViewer Component in Blazor WASM App](./getting-started/web-assembly-application) \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/angular/overview.md b/Document-Processing/Word/Word-Processor/angular/overview.md index ff6e6028e..7e05c6417 100644 --- a/Document-Processing/Word/Word-Processor/angular/overview.md +++ b/Document-Processing/Word/Word-Processor/angular/overview.md @@ -42,7 +42,7 @@ The Document Editor component is used to create, edit, view, and print Word docu * [Vue](../vue/getting-started) * [ASP.NET Core](../asp-net-core/getting-started-core) * [ASP.NET MVC](../asp-net-mvc/getting-started) -* [Blazor](../blazor/getting-started/web-app) +* [Blazor](../blazor/getting-started/server-side-application) ### Supported platforms for server-side dependencies diff --git a/Document-Processing/Word/Word-Processor/angular/server-deployment/word-processor-server-docker-image-overview.md b/Document-Processing/Word/Word-Processor/angular/server-deployment/word-processor-server-docker-image-overview.md index fcaebdc14..0c519e4d1 100644 --- a/Document-Processing/Word/Word-Processor/angular/server-deployment/word-processor-server-docker-image-overview.md +++ b/Document-Processing/Word/Word-Processor/angular/server-deployment/word-processor-server-docker-image-overview.md @@ -175,4 +175,4 @@ export class AppComponent { } ``` -Refer to these getting started pages to create a Word Processor in [`Typescript`](../../javascript-es6/getting-started), [`React`](../../react/getting-started), [`Vue`](../../vue/getting-started), [`ASP.NET MVC`](../../asp-net-mvc/getting-started), [`ASP.NET Core`](../../asp-net-core/getting-started-core), and [`Blazor`](../../blazor/getting-started/web-app). \ No newline at end of file +Refer to these getting started pages to create a Word Processor in [`Typescript`](../../javascript-es6/getting-started), [`React`](../../react/getting-started), [`Vue`](../../vue/getting-started), [`ASP.NET MVC`](../../asp-net-mvc/getting-started), [`ASP.NET Core`](../../asp-net-core/getting-started-core), and [`Blazor`](../../blazor/getting-started/server-side-application). \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/asp-net-core/overview.md b/Document-Processing/Word/Word-Processor/asp-net-core/overview.md index a764b7531..035bb953d 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-core/overview.md +++ b/Document-Processing/Word/Word-Processor/asp-net-core/overview.md @@ -42,4 +42,4 @@ The Document Editor component is used to create, edit, view, and print Word docu * [Vue](../vue/getting-started) * [ASP.NET Core](../asp-net-core/getting-started-core) * [ASP.NET MVC](../asp-net-mvc/getting-started) -* [Blazor](../blazor/getting-started/web-app) \ No newline at end of file +* [Blazor](../blazor/getting-started/server-side-application) \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/overview.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/overview.md index fb41bdf0c..81cf86610 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/overview.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/overview.md @@ -42,4 +42,4 @@ The Document Editor component is used to create, edit, view, and print Word docu * [Vue](../vue/getting-started) * [ASP.NET Core](../asp-net-core/getting-started-core) * [ASP.NET MVC](../asp-net-mvc/getting-started) -* [Blazor](../blazor/getting-started/web-app) \ No newline at end of file +* [Blazor](../blazor/getting-started/server-side-application) \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/javascript-es5/overview.md b/Document-Processing/Word/Word-Processor/javascript-es5/overview.md index 56d815e76..8806430c0 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es5/overview.md +++ b/Document-Processing/Word/Word-Processor/javascript-es5/overview.md @@ -44,7 +44,7 @@ The Document Editor component is used to create, edit, view, and print Word docu * [Vue](../vue/getting-started) * [ASP.NET Core](../asp-net-core/getting-started-core) * [ASP.NET MVC](../asp-net-mvc/getting-started) -* [Blazor](../blazor/getting-started/web-app) +* [Blazor](../blazor/getting-started/server-side-application) ### Supported platforms for server-side dependencies diff --git a/Document-Processing/Word/Word-Processor/javascript-es5/server-deployment/word-processor-server-docker-image-overview.md b/Document-Processing/Word/Word-Processor/javascript-es5/server-deployment/word-processor-server-docker-image-overview.md index 7915868e6..2d7632562 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es5/server-deployment/word-processor-server-docker-image-overview.md +++ b/Document-Processing/Word/Word-Processor/javascript-es5/server-deployment/word-processor-server-docker-image-overview.md @@ -227,4 +227,4 @@ container.created = function () { container.appendTo('#container'); ``` -Refer to these getting started pages to create a Word Processor in [`Angular`](../../angular/getting-started), [`React`](../../react/getting-started), [`Vue`](../../vue/getting-started), [`ASP.NET MVC`](../../asp-net-mvc/getting-started), [`ASP.NET Core`](../../asp-net-core/getting-started-core), and [`Blazor`](../../blazor/getting-started/web-app). +Refer to these getting started pages to create a Word Processor in [`Angular`](../../angular/getting-started), [`React`](../../react/getting-started), [`Vue`](../../vue/getting-started), [`ASP.NET MVC`](../../asp-net-mvc/getting-started), [`ASP.NET Core`](../../asp-net-core/getting-started-core), and [`Blazor`](../../blazor/getting-started/server-side-application). diff --git a/Document-Processing/Word/Word-Processor/javascript-es6/overview.md b/Document-Processing/Word/Word-Processor/javascript-es6/overview.md index b663f5c49..b60ec21a2 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es6/overview.md +++ b/Document-Processing/Word/Word-Processor/javascript-es6/overview.md @@ -44,7 +44,7 @@ The Document Editor component is used to create, edit, view, and print Word docu * [Vue](../vue/getting-started) * [ASP.NET Core](../asp-net-core/getting-started-core) * [ASP.NET MVC](../asp-net-mvc/getting-started) -* [Blazor](../blazor/getting-started/web-app) +* [Blazor](../blazor/getting-started/server-side-application) ### Supported platforms for server-side dependencies diff --git a/Document-Processing/Word/Word-Processor/javascript-es6/server-deployment/word-processor-server-docker-image-overview.md b/Document-Processing/Word/Word-Processor/javascript-es6/server-deployment/word-processor-server-docker-image-overview.md index 864eec5f3..242be21c1 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es6/server-deployment/word-processor-server-docker-image-overview.md +++ b/Document-Processing/Word/Word-Processor/javascript-es6/server-deployment/word-processor-server-docker-image-overview.md @@ -227,4 +227,4 @@ container.created = function () { container.appendTo('#container'); ``` -Refer to these getting started pages to create a Word Processor in [`Angular`](https://ej2.syncfusion.com/angular/documentation/document-editor/getting-started), [`React`](https://ej2.syncfusion.com/react/documentation/document-editor/getting-started), [`Vue`](https://ej2.syncfusion.com/vue/documentation/document-editor/getting-started), [`ASP.NET MVC`](https://ej2.syncfusion.com/aspnetmvc/documentation/document-editor/getting-started), [`ASP.NET Core`](https://ej2.syncfusion.com/aspnetcore/documentation/document-editor/getting-started-core), and [`Blazor`](../../blazor/getting-started/web-app). +Refer to these getting started pages to create a Word Processor in [`Angular`](https://ej2.syncfusion.com/angular/documentation/document-editor/getting-started), [`React`](https://ej2.syncfusion.com/react/documentation/document-editor/getting-started), [`Vue`](https://ej2.syncfusion.com/vue/documentation/document-editor/getting-started), [`ASP.NET MVC`](https://ej2.syncfusion.com/aspnetmvc/documentation/document-editor/getting-started), [`ASP.NET Core`](https://ej2.syncfusion.com/aspnetcore/documentation/document-editor/getting-started-core), and [`Blazor`](../../blazor/getting-started/server-side-application). diff --git a/Document-Processing/Word/Word-Processor/react/overview.md b/Document-Processing/Word/Word-Processor/react/overview.md index dd0b8e694..69b84c0b7 100644 --- a/Document-Processing/Word/Word-Processor/react/overview.md +++ b/Document-Processing/Word/Word-Processor/react/overview.md @@ -42,7 +42,7 @@ The Document Editor component is used to create, edit, view, and print Word docu * [Vue](../vue/getting-started) * [ASP.NET Core](../asp-net-core/getting-started-core) * [ASP.NET MVC](../asp-net-mvc/getting-started) -* [Blazor](../blazor/getting-started/web-app) +* [Blazor](../blazor/getting-started/server-side-application) ### Supported platforms for server-side dependencies diff --git a/Document-Processing/Word/Word-Processor/react/server-deployment/word-processor-server-docker-image-overview.md b/Document-Processing/Word/Word-Processor/react/server-deployment/word-processor-server-docker-image-overview.md index 0334e1964..b73906e4c 100644 --- a/Document-Processing/Word/Word-Processor/react/server-deployment/word-processor-server-docker-image-overview.md +++ b/Document-Processing/Word/Word-Processor/react/server-deployment/word-processor-server-docker-image-overview.md @@ -178,4 +178,4 @@ ReactDOM.render(, document.getElementById('sample')); ``` -Refer to these getting started pages to create a Word Processor in [`Typescript`](../../javascript-es6/getting-started), [`Angular`](../../angular/getting-started), [`Vue`](../../vue/getting-started), [`ASP.NET MVC`](../../asp-net-mvc/getting-started), [`ASP.NET Core`](../../asp-net-core/getting-started-core), and [`Blazor`](../../blazor/getting-started/web-app). \ No newline at end of file +Refer to these getting started pages to create a Word Processor in [`Typescript`](../../javascript-es6/getting-started), [`Angular`](../../angular/getting-started), [`Vue`](../../vue/getting-started), [`ASP.NET MVC`](../../asp-net-mvc/getting-started), [`ASP.NET Core`](../../asp-net-core/getting-started-core), and [`Blazor`](../../blazor/getting-started/server-side-application). \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/vue/overview.md b/Document-Processing/Word/Word-Processor/vue/overview.md index 162749e7f..429fc88e4 100644 --- a/Document-Processing/Word/Word-Processor/vue/overview.md +++ b/Document-Processing/Word/Word-Processor/vue/overview.md @@ -41,7 +41,7 @@ The Document Editor component is used to create, edit, view, and print Word docu * [Vue](../vue/getting-started) * [ASP.NET Core](../asp-net-core/getting-started-core) * [ASP.NET MVC](../asp-net-mvc/getting-started) -* [Blazor](../blazor/getting-started/web-app) +* [Blazor](../blazor/getting-started/server-side-application) ### Supported platforms for server-side dependencies diff --git a/Document-Processing/Word/Word-Processor/vue/server-deployment/word-processor-server-docker-image-overview.md b/Document-Processing/Word/Word-Processor/vue/server-deployment/word-processor-server-docker-image-overview.md index 35413592d..50404a430 100644 --- a/Document-Processing/Word/Word-Processor/vue/server-deployment/word-processor-server-docker-image-overview.md +++ b/Document-Processing/Word/Word-Processor/vue/server-deployment/word-processor-server-docker-image-overview.md @@ -224,4 +224,4 @@ export default { {% endhighlight %} {% endtabs %} -Refer to these getting started pages to create a Word Processor in [`Typescript`](../../javascript-es6/getting-started), [`React`](../../react/getting-started), [`Vue`](../../vue/getting-started), [`ASP.NET MVC`](../../asp-net-mvc/getting-started), [`ASP.NET Core`](../../asp-net-core/getting-started-core), and [`Blazor`](../../blazor/getting-started/web-app). \ No newline at end of file +Refer to these getting started pages to create a Word Processor in [`Typescript`](../../javascript-es6/getting-started), [`React`](../../react/getting-started), [`Vue`](../../vue/getting-started), [`ASP.NET MVC`](../../asp-net-mvc/getting-started), [`ASP.NET Core`](../../asp-net-core/getting-started-core), and [`Blazor`](../../blazor/getting-started/server-side-application). \ No newline at end of file From 40d53ad1f44411e52c40895da8ef42318cfce6cb Mon Sep 17 00:00:00 2001 From: Tamilselvan-Durairaj <153176971+Tamilselvan-Durairaj@users.noreply.github.com> Date: Thu, 25 Sep 2025 23:03:38 +0530 Subject: [PATCH 09/11] 983689: Update the web app link in the pdfviewer md files --- .../blazor/getting-started/web-assembly-application.md | 2 +- .../PDF/PDF-Viewer/blazor/getting-started/wsl-application.md | 2 +- .../server-deployment/pdfviewer-server-docker-image-overview.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md index 32dd1280b..1dc8d4682 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md @@ -177,7 +177,7 @@ Run the application to display the PDF file in the Syncfusion® Blazor PDF Vi ## See also -* [Getting started with the Blazor PDF Viewer in a Blazor Server app](./server-side-application) +* [Getting started with the Blazor PDF Viewer in a Blazor Web app Server app](./web-app) * [Getting started with the Blazor PDF Viewer in WSL mode](./wsl-application) diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/wsl-application.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/wsl-application.md index 2ef7e4e7b..0c5a16b97 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/wsl-application.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/wsl-application.md @@ -92,6 +92,6 @@ Close the project, reopen it, and run it in WSL mode. It should run properly. ## See also -* [Getting started with the Blazor PDF Viewer in a Blazor Server app](./server-side-application) +* [Getting started with the Blazor PDF Viewer in a Blazor Web app Server app](./web-app) * [Getting started with the Blazor PDF Viewer in a Blazor WebAssembly app](./web-assembly-application) diff --git a/Document-Processing/PDF/PDF-Viewer/javascript-es6/server-deployment/pdfviewer-server-docker-image-overview.md b/Document-Processing/PDF/PDF-Viewer/javascript-es6/server-deployment/pdfviewer-server-docker-image-overview.md index 1b346855b..5ee05c042 100644 --- a/Document-Processing/PDF/PDF-Viewer/javascript-es6/server-deployment/pdfviewer-server-docker-image-overview.md +++ b/Document-Processing/PDF/PDF-Viewer/javascript-es6/server-deployment/pdfviewer-server-docker-image-overview.md @@ -135,4 +135,4 @@ services: - "6001:80" ``` -Refer to these getting started pages to create a PDF Viewer in [`Angular`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/angular/getting-started), [`React`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started), [`Vue`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/vue/getting-started), [`ASP.NET MVC`]https://help.syncfusion.com/document-processing/pdf/pdf-viewer/asp-net-mvc/getting-started), [`ASP.NET Core`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/asp-net-core/getting-started), and [`Blazor`](https://blazor.syncfusion.com/documentation/pdfviewer/getting-started/server-side-application). \ No newline at end of file +Refer to these getting started pages to create a PDF Viewer in [`Angular`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/angular/getting-started), [`React`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started), [`Vue`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/vue/getting-started), [`ASP.NET MVC`]https://help.syncfusion.com/document-processing/pdf/pdf-viewer/asp-net-mvc/getting-started), [`ASP.NET Core`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/asp-net-core/getting-started), and [`Blazor`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/blazor/getting-started/web-app). \ No newline at end of file From 2cc2ae11af95ef210c656bc5baa4e5617a9d8342 Mon Sep 17 00:00:00 2001 From: Tamilselvan-Durairaj <153176971+Tamilselvan-Durairaj@users.noreply.github.com> Date: Thu, 25 Sep 2025 23:32:16 +0530 Subject: [PATCH 10/11] 983689: Reverted the changes --- .../server-deployment/pdfviewer-server-docker-image-overview.md | 2 +- .../server-deployment/pdfviewer-server-docker-image-overview.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Document-Processing/PDF/PDF-Viewer/javascript-es5/server-deployment/pdfviewer-server-docker-image-overview.md b/Document-Processing/PDF/PDF-Viewer/javascript-es5/server-deployment/pdfviewer-server-docker-image-overview.md index a1bcf0293..d0d05cb1c 100644 --- a/Document-Processing/PDF/PDF-Viewer/javascript-es5/server-deployment/pdfviewer-server-docker-image-overview.md +++ b/Document-Processing/PDF/PDF-Viewer/javascript-es5/server-deployment/pdfviewer-server-docker-image-overview.md @@ -135,4 +135,4 @@ services: - "6001:80" ``` -Refer to these getting started pages to create a PDF Viewer in [`Angular`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/angular/getting-started), [`React`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started), [`Vue`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/vue/getting-started), [`ASP.NET MVC`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/asp-net-mvc/getting-started), [`ASP.NET Core`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/asp-net-core/getting-started), and [`Blazor`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/blazor/getting-started/web-app). \ No newline at end of file +Refer to these getting started pages to create a PDF Viewer in [`Angular`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/angular/getting-started), [`React`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started), [`Vue`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/vue/getting-started), [`ASP.NET MVC`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/asp-net-mvc/getting-started), [`ASP.NET Core`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/asp-net-core/getting-started), and [`Blazor`](https://blazor.syncfusion.com/documentation/pdfviewer/getting-started/server-side-application). \ No newline at end of file diff --git a/Document-Processing/PDF/PDF-Viewer/javascript-es6/server-deployment/pdfviewer-server-docker-image-overview.md b/Document-Processing/PDF/PDF-Viewer/javascript-es6/server-deployment/pdfviewer-server-docker-image-overview.md index 5ee05c042..1b346855b 100644 --- a/Document-Processing/PDF/PDF-Viewer/javascript-es6/server-deployment/pdfviewer-server-docker-image-overview.md +++ b/Document-Processing/PDF/PDF-Viewer/javascript-es6/server-deployment/pdfviewer-server-docker-image-overview.md @@ -135,4 +135,4 @@ services: - "6001:80" ``` -Refer to these getting started pages to create a PDF Viewer in [`Angular`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/angular/getting-started), [`React`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started), [`Vue`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/vue/getting-started), [`ASP.NET MVC`]https://help.syncfusion.com/document-processing/pdf/pdf-viewer/asp-net-mvc/getting-started), [`ASP.NET Core`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/asp-net-core/getting-started), and [`Blazor`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/blazor/getting-started/web-app). \ No newline at end of file +Refer to these getting started pages to create a PDF Viewer in [`Angular`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/angular/getting-started), [`React`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started), [`Vue`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/vue/getting-started), [`ASP.NET MVC`]https://help.syncfusion.com/document-processing/pdf/pdf-viewer/asp-net-mvc/getting-started), [`ASP.NET Core`](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/asp-net-core/getting-started), and [`Blazor`](https://blazor.syncfusion.com/documentation/pdfviewer/getting-started/server-side-application). \ No newline at end of file From dc564280c35f90e7ea5ab95143458e66dff6f4fe Mon Sep 17 00:00:00 2001 From: sathiyaseelanksf3503 Date: Fri, 26 Sep 2025 16:07:34 +0530 Subject: [PATCH 11/11] 983689: updated the script and the image --- .../deployment/aws-beanstalk-deployment.md | 5 +++-- .../beanstalk-publish.png | Bin 32277 -> 54518 bytes .../getting-started/deploy-maui-windows.md | 4 +++- .../blazor/getting-started/web-app.md | 4 +++- .../web-assembly-application.md | 4 +++- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/deployment/aws-beanstalk-deployment.md b/Document-Processing/PDF/PDF-Viewer/blazor/deployment/aws-beanstalk-deployment.md index b09eb0d96..a7819e440 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/deployment/aws-beanstalk-deployment.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/deployment/aws-beanstalk-deployment.md @@ -74,10 +74,11 @@ Add the following stylesheet and script to the head section of the **~/Pages/_Ho + + - - + {% endhighlight %} {% endtabs %} diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/deployment/aws-benstalk-deployment-images/beanstalk-publish.png b/Document-Processing/PDF/PDF-Viewer/blazor/deployment/aws-benstalk-deployment-images/beanstalk-publish.png index 03a3240f8d19ffc7cfe632c516219c78d1458bf4..bbfa982ddf254955eb11a085dba2f086714dac80 100644 GIT binary patch literal 54518 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� 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 literal 32277 zcma&NWmH?w7d8ql6qf?Ut+ZHiQXE2Yr$})t8r+?r#kIH-q`14g6(|HL?(PnOpqKvs z@B8iEweE+k$(fw9b7s$+z4tuNbHbDqrLfRR(Gd_3uw!FD;A=!^Eud)Gj7NwHV#WWNws8t zq_y`qndwsGjySf{*d#?sDt!7|Iga(U8{VE`T8{2I_kHGFT7eKt>Y#_J6n!$U!#PTzX zo@-`2SKttvOk8n6h%l8hvyn9`IlXq*ndaz2y_el!vX!=g5Qn6?jy{%EQu6fS&&9$?Gep9G@RBBhGkpg#_I>!ZlB;iVig&b{%AaC;17`Z6o7=sNlpLhY3T3D78mueMMGN< zJ5sygS_#)*#bG5yVfGHTxnU)fTjfE{LLg~%{edd~?LQru*82N<2k};T66`uf19ip0 z?4Cl*_BPHcS-)fQBg8GT#aRS%w_v5E#S${!gYkYDdTv95{RcY@ioso(nxfM0KFKG^ zhZQu?)tyU$e5QAY?A83E!ZW0#q?}Yah6eKb!%eWI-IIHZY#GE7gUwjNgwW8?#76k_ zU!DO(XB99Uy~>OEA8Me&ZC4 zO9zmV--$nMcRP9XdBy?0IW9h_PR9+k5JhoubF+F27FTKpz1@3Nl6@EFMP5; z_^aM0?+=zl!o3@gdA`K))pW6ZXJqyT_~8|*_qJ~iv{YSauZc^8_!yAm4^$=Hh=wR< zy!oPP%ssgl;`Tu@rkRR^KBw2_m(IgS7+cWgfV7QK|8 zzYbDf%YFolkB#^W+t;_XDV&n^A&+#7Utqa-iNcQ{CYL9*-M>LdhfYmuVx}HYUN`6kPG{HgZaRmQI5qsun0`{p9T< zn9wss!MKpbaYLL|;pH8@;0Knh+BAH=4-syX1h2rSv?;qtn=KBdgd0mf(3h^ME?So7 zN1WCTN_C>`Q>Glw4oGe|F+BuLh-g!i&jmn&Oag8(y$Qj}B*QUspAe#K`G-W-9%V?w zFG*Ts-#$$bz6{h4c(py9X6emvY-9KQN*oa@rfXA{$NNf$T;Q_|L^xpZ+HJ)!CbQF` z8zVdxO5O$1HlFY+D)Sfavhfs!c(tJA^NK32^%#?}Dm7K@A0Z!1PD~Q^Vy^)hnY{F` zP36%qND%L#Vq&mCbaT-IzIA=uZWc1`_KavE=7+s|f-?`t%#}hP48_8x-(hZZa8+tB z-o^amz>lZe1v<{DCb67*%^w2R+hR#*cThRXu;WpvU6Wt@z;Xzi(l7Rsnk43Ck|8+Q zGpuM}X^x`_7aoal&bMP3rCYhZFGNp%Hh;cFm38-?vJvr)yu;1J-TF^?c}JrU_A3;L z5IZ9t8;W_T(`B&@Qoj^1=C;f}#cq{wqKWUC+qnC9t?+{}4FuoHM1BxUV)rK$)m89F`1x#8jW4I;oX_I>G>UK^2B8?F_2vYuRVmB{UAmi4 zJR?J}Jz4h9uT0*x4&p)ZoMjxBA9U|dAa%|bUSM?VE?+w-+;Zge>MJRyGAS1Gm3|MA z+NkZN^j(zPgdHvNW3805lsm}_c8o^gC#hM&MfU)}VGu~ulqV>DRH&#uiuio~;LxeN zr@eFiM-oh`6B#IcP4?T&ww3`EemZANj)Cs;7OdB=9c+}BL8*=t4ty`Y1S<@8q4|@z z=!1U+e0>lbO&;rz1?p~#S9@8T{?_08z?jR)@U8n!k`8;yLq3XkL5#t8UTfs7n6Q-_ zWQnbsesbEXje+vlz8+sFfjuxQF`aB(woG^Jw$x@5WfIq~z1lxd#avV!9voVV=lTr_ z^o6Y7a_8%(pm}4jwpbpHCHu-69{f=&{W3QYuS@knIVdY)Ua&!$b;lT8N>r(RJ;644 z9#95Rai831f6j`&VOzS3`QEm+yIN?Eo9{b%lB>MpxWu2kZ?nrG z+ig?YrN`k64r`ZLBR8>gVh;2;RYydQ{EnFcc@<^XMC*u`ydS5j;h>52 zg&@+(;qay>S)>}z7wXP`j%^V!4= zA7nGYXElKK_yL8S((B+Rd%FD=M`!sQ&O?3M;vF0>gHHHtcxtD82FuLO$Jzj}w?U$y z_IqSf$2K?}K)^UCM4A>+eKF<2@fo;Thup(59a^jTS)5z}UY6X~#T~F5oN{?_VFhUu;CKH$ciwL$Gy%>22CQCo<|ZoWNp zQ^ai6uca6-;&eX|ma4U0?h5B~&0us*%JX($(XfZMbzP~AJLqEY&-0Q~v)Owifd||L zZ|sS$NJek2ZjXpnA_q_G+CRSHuoy7#eeyt!k-|kf9Ty#s+~K>TdI**}b8n+Q=C(&^ z+vS*@!71rF4LJK#PGz(CPW%q)FH zRP2yL5ZLRnh%gR@J^eNRITq^mBMMpw-n?9ian$@Sy_}xf>~^Ss@)ZipARl*q`u&)` z_?kR^h-DGM7kG_>n|6JM0K2PS=wI2QmDOyB}MnOonz{HuB^z zt3%+6A1>>J27BNik5i8xt90}Z;&&0Y0sqoIdby%>k?r1$rQ1p+KJ3Gq6J8_s9pm^j zw$ytMg5MxL)Z5p=X<3tN!2#OZC|Mz_eJPct}d1wxQ`{ z@ii3t-_IK`ctq;Bj0f{S8zMj``@hy5{~=>RaB9 z-5i+t>`N^2GPF0l>xWEzrjS{AIUENLe`-y# zgx?%`P!X%%khE6+v8LqI@qRva_L{tPHVlB-Q@-PI{Oaq~-TUnGz95ha!Wab;3~|u~ z=+3<>pV}8k(>6L1iqG!!24B&}3k5~ohvZd;Ul`N*n25|l%W$6Id@hj80-jnP5C~Fy z;c;oA5MnjhP85u;DY{84-;DFV*OO+d@LBXN&Ie=f0yHetvE5R4!7S%pk3-^TObK{q z{pWImlE?m&)-Orq$CNtV#PsQIPC*n%Ltgw-jJLn>fe74Wp75zN_(g8oW|RaR1YU76 z{G0XD0cb2^`HJU6f34zPF=^=tvm-z9mkODZH*nmV*Mw@klXiqA5nsip5C=~Do6n7>FoD-NABp6FqL|GGI7lOc>zDuE#3w3SGF&ozy z&x(cevg)zvU}Tk};*hdaLiTynm|s>R-%Giw1BKwwO8$=PBtHNgiH3V||MGhN7QBsR zR%$8AIO)!OCr0b zomauER9mkrhvXAK#v&8EL*C1Gl=p6TGR z_2><~s7CSr`UHoYR#1hri}l~jp+q~|vN48X-{Nq*gf>lzmAPqLQF_7waT60knD**H zcM6M$=IR5M#u2U9V(66ICo4`#^jPD8+`ESZZFG$eD20|))5F7b@IWq`0iFG}WBSwg ziJ@RZk(1bz9853V)qNjuxe}i7iruad^XS$7ZClaK@Y4XQ=BcDE!(^W~5Sm@C zJ$?tnR)XKj46j?MQ)(OI*h2u^0;1?U{nI#4Z)2l&OggA0<{r$7)$Vp7~5Ev3s>u z6+4naynJBi&~H48!1}R09alSfE3g3YzN=6hJtT3d9(h30LwaG`04tFHUY!j!C(g~S z#hXq+s0`Y@W&cgVCgZl1{%Ui83AZ+V0(iOwE(q|s_@g0wH(|BL{j~+~x3<#GD_zjr z8PR;!usLXw@I#p_rhsj?$xzyFXYwcO*!IW6(MZ{Al^=kW%1>i!>UCtU@xTOtGCvm*Fw{VL(tT1%>bxS(HKZ!B@sjJ9u% z9o^Sb6~VyNGlxO^<+Inf#t&*b&X0v^7Rjo=*4lL&oymmx(C?Or>fdKRlu3;YfIt(J z-#fDzko79ltRgS8oSp<@-e^MLhX%e^vz@@#DCMF~bt{?O%^M^*AMj&pjEZBdoOX^lm02r#|Be3`M4bU==u_t)`8xiv&w*hGvlKg@O&{Q#UvA zs!zSGSf}x18#Y7r?nFH|CxWyy%J%j<=oIJ2H+)_uLF3GPy+&sOEvL5iSw1XA#47&s zjhDoAd&R8DAogsJ-Bi66O9ph~Ed)CA$$$YnAQ_f7?mnk$?EI|d1;lU`FJ|$590CY? z?$G-RMXQR>jD0#C8&0IC&~|_QVQ;F`aIRln(hA;j-du=yt2>E5PgCY(Wo^FDt7nc_ zsKaBO14(f7<&OR&9^HT5UFjk5S|?H&gSG1Gu5|!#vu1#Fk;Q`L5a3?1fuReIE@@ly z&?|(PZq)-WT$cr=$Z=G6Bu(C$ILa!pv?WM8&XyuQzs=+V0wLutE1w#A4x#2?uQ850 z&v$ksW6YEycJR(YG%Q4)8rA-QHUZ->D5ZV#Zai_)mfVl(DF|CpeqR|>vZ8(T4s&5~ zn3l1M1XGd!jP^V7E_EanYwZu&iV&{s<{H#QGxXuA_T-#Be|$KvYAHGmcYgcW6DED8 zfZ$Dd6*k6b>3;_)-?!yR5%;8Q6E|);@&TWHO>I?ws=CT4+y_|PZm`GTowDw9^qIJL z)!eROm0;%dxs2~FIbnD&E;6pAPgR)+SlU6k2L8~a8A;W}Ja0kPVCN9>-S)Oi(^VNr zii3@H8S2>0mhnK(oPKOkQ~Fn!e=X*1n^!mT#bdnnGu#ZsZ^pbxSvoas&M2k<h;M{tC$5^l{vzOPK?973I<9S%9n1G+jrcb>ib?{@)Er1ie0{bYOPyr4DD zHbM+9>Yda=@%7JM@vs?^Msw5~4*Rd#dHzz4i_K)Dwg%7-wXLl&zt%VHD`hsbUTu45 z!pv{D3Y43nHSWlsg`4cj-U=Xt$xrsI zHGc4jH5(Y|=SUuw?vVS;%Hc6(`9EA5TJ!?tv#02<_-WJEhz!3Yy=m9X=wG)d zkT>SQryz3M{m~^RENJ!X1bGWU;}?0ZRqpp@aelF!KTNFLwQj+h@+Hy<1{-=7W-W#g zjQQS;F(qKV3jv8#H_QC1ZeOf}5*Gi2J4zs;PNiY$FtvvC;X`EBd7zE`sz{(4vX`VFE4;=ScLgPy6 z35EQ#1=~z+;*8?w^ANLcSx3_!RR>GK7zx?UV)+XzsfzmH;lSMR)x8ao#gU5|H4Ljv z>l$y^?eM1#yoa%lyYa1~4D_i>EnRi!6`_s;rw8}nIw>Sf1IRIrWMZ176M2m$6TJl8QQWdyNr^hK%jnu+J0>(0#iv5Ki-3_ea^AENY;#v-EIyKNyw$+)qUivj4w z(2JhuLZd9t)4jvoaaxJSVRd$`6)xekCl;kUUHKV}p`KNW=9)$s zhA7q7gw5IsH+iR+lo4U=z&e!dcy0Cl9CMRraeh-ST>?az8~07sh!ltsd}t+#_9wMq zhi|sq4D%HSVjft1-hrzZGZiuS2vd`0iN*-M?cUQ{(e{%K-*Vsdk9ht2GJ1>*qtSvl zS+`_O$6bYL!4y?BLD~D~O7t2oW5h1pbKgCIWaQP#J}g9pM(^Wiog02ftIas}muEw> zHe=|M`VTy=tTCZeL$j@IWx*7_A1xNNUY@=se`O#5d#T5SiCW(EO_@CCZJ6YMLEEMw zE#vaTR4H2r5jJUm;8b6Mmx2Bp@JVr-QR8CyET+O)51~AguZh+g`nd5GF`{^VV#2H%VyzTYar4} z<`b}%Z%KA7<-^dV<<0=rTc=cIAY|N>L6IG%-rBCVYik!V%(CLWe*Nh?Rdc1W2m@`z z0)CI}J7)iUxgi&+M%<0%{_Z30H7AB$KxzgRTItxfKMWQfucb@dg2xKHac=PYa-v$M z*j8{Gl0`2EZn$}{ws!hD4^nY;7AY?*?txqH4Xd^<5)Kc-ghq<6GpaWN!i%n3j*hq) z@jRn94{P~=`iT^5{{0*FP7UJ5jN^Vgjg?U4#2h4+Hr-T-wP0Eg-Bi9pi-{hk-F>1P zgu(Rh020Cofj5hbike>)$=|8w^R=6t$+I_e+I_*W()~$mr3rC!D-Z|~(4FDcEW@6m zNuIU=#T0U+oj}#7A@8^L^ZWG`v>=J6opZSV?H3rM$}7uORfpYJJvz!;CI|$S1eop_ zLSKxf9d~40QvqLqJVF=M~EdR zKVd#OC$)8LZU*aI=jv(b|E6YGQc~8}#|CqE*rV2sN4=}UNHNnM4K4A|yuhfM({+^c z@L;=2eXEu9>x5sMN!G)snE#CTTSxmgw)9)b4!t@pVnoJD8g-!i zGb?AMDfv|@cXOkQ8#;viOwB-V&PWv*u_>9y;Vz8GG^Bj=qe^%^ugR{b)k3ocdvIBJ z-eyhlhWo@la?y_4@pRL0woiy?6_74hPb$_wskhUU7rQ?Ox0lC@7NLgha^GY@#H;c^ zwq?$3!t%SG(~DecM~$>@?daHKHNDZlcun6^J z%9*-HnRMaij+d-X)lT$rdkgWbMvtgu@=plLrW5*=$Dj=3-Nzm7o0HnsC0-*(c`Kpd z?9wblqxHIlEw&~@vEY4Vj(au*xQ6jesZN!ged-$zG?tl^!|aDFz@Mubjfo`XLt3E` z`ffYkIq7Dey#53y%B@Sx9~UIluTU>Mg8#uk|6lFzE$;$~a!cvb9|hBEW>($HF(Q%w zK~3>D^SL8t)blN`xZ+2PYG@gXzP|pKPu;;Ct?8t-QKPy>04wy5XTcP3L9G8ks}~^Q zDB8=HnOPCw;1k)bVs~QuFTM61*DjRnhDByYb60!vj=b6U|dyNe_TdJ#&jgJPg5B6vDf zZ#hM9C9RH^|NDzWKpsQ#QvOi6VWmbf#pmNS+hT7vEi{;nW%x&Y(-d)F>wgf~B1j<5 zo*|``r}@;+kyq3zfjN+m?>@P{lSWy$I$&>^ica}x60Zzu(2kFUj|QWvx$!Pjl9pZH z>9`KZS_ccBWSZVX8uS6Kj075HrX>7q|De0`+p@SdNjJ3SM(j)0l?0UxU?YQkxpjESHJbC~}e z|2q^~CpMUJ%1%=-G;Ug$_1(Ihos2EybU94Iz_!}FFNkg5;p<}rSLS|G8LC;RYc=pP z2x2EqpPY#mfLtD4VwH1yPCZ7Y`H)t9a)caC;8w?lG&;uVtp9J_adJ`?G$f{TttyVr)Zev|1uopa&VEbzyvhnJ<4GQyNte@5*Y$<2Oiv8mE#;CYnOu7_qbysB zY$j`?6D9omSZ0o_U_DHX3?AT+x>&d%JuD;i90m@OP#H_1azso|cFGI2dVL7>>ho%s zHN{`v_k5Sx{cB}ReNV*>G7e8C{lq{{Fz?KtXj@YI)k#VwaDVZZ*hJ7`FR@Ef1fOf=y~SoSbBpa`ytn@Scp(VxeOCF{ z_$fZX>^l8NilDQwOzFhMT^V1>6SBE+%FV6Rv@V?W+_-X)vaXu-f3*NBY1*L61M7kg1)p(ZHLyQk zXkO}ELfTI)3jcy5KoW5+u6_d*tC+>u+YjcPM?R6)WrJ1A9*)G;wqD*1QFiuB>AmIF ze+NwNTPx8Flr9}O_k+a1OXidP*6c5_(CrD+NsRspO}~aSkOGnAa#)d)74;A|%!mdD z_RRMK0Z8>WjL;c+VoEkuE=8Z>+fJws4@ehO>jGN_=G2!uVMU3rOPNDGhgwa@a*n%p z7q^ozxqY# zD2E@EJ7}I`pnqtGESL7YxKYha;^6qNMT+9eXPhh+`QF_=oeS;W;m}Vn z3GGchtx%@A)aB2PQ{&{sB@I}xpk|ezkt+@j&A{sy56j_w-hVK()N{2w2*WR?KM}x-GoZQal>j;Pw?&*FQ@wKovdH)Aifr#WsJiTQj zEmzIbia9%A+eRW(PUk1o33IL1XyfVfBV|`y&iMSta`UzAtdueE*Uf01Rzhdh45*^2 zEKhed8C|ls*LE4d#nY2rL~HEW%Ov(CaXj^$f4kU^fz(B%a88}iSDmy*fy$OXw|t*; zR)Ok;5>^OsR{fk61|OF9&)nbBynVhi|KsB z_5okx1*nPwp}*HP5@s2>nhNUiJmFaX)p2y7533~E5ulw%>KrlF<@ts z^7tIl;G+(jcN%or_ni9V=R`m*^>+MiRtXOGuK^%sMl-Hhr`p>xJ!GwbB9;RgB z+E3|^+-ARg-dTA5x+%YoQ#pLJY$Q8?eR~gi8_KvIFD&o4oA8DiJuy=#yrD>k3z;U? z&1S&6@~f%2ryv15@{2rLC3HLdLPp$t4%S&sBD zdeCh^^?_BHC?H;zAN!7!uPGc%XWyphk{zvqL0SXj;j_b(IQa>*Z*vmL#0?`-xFpK| zxnV=~bik-pHD2e{<+a&diuz^PVq>k2&WKvxrqe{)m{LfuXe=$yp%+o0zRr9%JJ~kU ze51f!??ty}a&r;T=dzGJ%*XL_uk~piutl9TQXu`JR-0WbFatMm8dUnt#`Dz+4yyO$Q`JL^XLMUd|E1R=PiM?cdbJL+y-PHT z*BgMt+J0u`7#Q5ly63G9V+{F9J8s1a{v53p(Q)xcgquOa#n84dI4_*0pRvDtt3}Gw zO$NP^)hFM9`dbzFcp9L-Z7;625JxbsPamRjI5l+uGdXwYjZVP9r*S7pW$ zMf|Tcx!(KhRwe~fFRrmkdOu(bs;QMYi2S?Qp!^7e-g0YAPW_DD9A3H@ExBz_k|nQy zpR#c<|Ffs1w|*?Q+d5de{kI>Hw?BTbh4(n2BJSnugEdMI3gB*bg~kfsFS%*&+!Ie3JJ^lsK<}jcWl_ zgC9CP^Q|oyd^4c$7^e-2r$tC*bzwHQMCIjd+!dNivLrx|x8l_`-~FIUN{+zT-1YKf zdf`R(fAxyA&`Tc2^QeFK$<0M3L_DVn>K5O2o*FJ*wYKiHF-v=pUSQanYEi@2lG9%^dJ`G8x2(%oP zv=P#4NKTux3=k0os?@Z|?p;<7*2h#F|DCKG*!ZnS76z82J{gtcNM~dN z5ko?;!7Ce^fSHG|l184dM8kHJ+fJsaw7<(^Kq=fQth?#-HQK+Y6o}S&{BwTk_p|qF zzd`|qh(c}x^{q~tG?yEb49C>Q(wZUvRl75J>9?}eMaw$x_|wTU?K+go9-+FnHj}p? zuBM!}Z^ZZ+)P?Wb-vXGm3+3i=yAwyUUQ`ovkhRbXb3IJ!TBc-E zzxIp~PWOb1xZEqrJVm!A=LToU3*aufx*o7B#Nv9*LLA($#Z1^~wf-oK+$vD!O~PXp z%tYlXct|@PudN^C6$ewKabe>=f5cD7yu1muE^e8x@}m)wdeoU8K*oR7tq zz>&EG!=UW-UlGkcWH<6>j02=hdpaX0`lBD>?E-+)&IX7^X}2zf+hl2m1<93ekFbYe z419*oB?lZiL&>CeRL8>zF|-WsqQOd!cags6@(+6HgeNCe`f@8#;4Ftdbzes5mvH~* z>SAB&FTwEwcQ)1Xk9IKDgfK-!2UFX+*Ex?A7an>)>@i4T!jgigwZ1_C0D@-VmN z;3tO*ZpsgW=7$e9NAVi^oP1mJrmfX`=^T6^^W@k@jAvT+nt1Y8fsE4!WcS_bO(a%! zpOfD-b8W(CB`IQV*Z`H94oCdEwO!86i=j0EFw82V!&1DXYqcq5UV$$uhCXSFq4Bh( z*ZU`#T9EGOQ?NBFGEUji2z&3*T2ubAL$9?yBDbN847;+suzR9|3^L*U;E|Qc5(a6Q zt*(pA)@3B1-P1WA1?w=vLn*K58g2gEZVwGt31a$fyHJ5QwYBpy9>H;K zw=0boA_VlNbcqMc8@P(k;X*5+qi|+v{qlvj_8eqky>FHLXBIq)!T*SB|Jj~iHK6<2AM3RE=P!QOw4>$5Y@8n;pp^aTh;~uKcXH*_;)LyRNf%?~C%GJg z70BN^+4U?HU?kMrN-xL0;i%_?4EESa*{s=51dVAjVj~&e*vQ5^@?z?&4bt7^qjam# z(Nk^lJ^r4)xSM}=-}4was=zUQPnO4258h>O)u412PaSgYr=*Lmd3_ulj;ua>f0xTY zH6+I-8F+fSpeFIXXGQ}!CM@@}H^w>vX^2w{dGAuM^cOFiJq*fy}*(s^V8;y)4==*>DBIA0Rw zMOPp-V9xJ~=I8?HM7Li2s+sO^RaRi10|yHMBiPDHF>`)7kX?zvucsQLWt=NZs$ba&e3eMCiozCZPlkJUr~#rXWQt)!XdNI+#+Yg9I+vE58h4b|{yVn=&%T(?Zf{{drnxVcu;b@n`4O z?SszTIs18aq0aA$+A0HUX3L^}WC`eC>9>;CtcohV>`QL%&ze!v?tH$!HfXBDR~&iW z5p89Mu~Vzjg{LrG-;+=Fy}yjYtIqi{7ayhTgU|4tU_*OmmOAXvS~CBx+e7rHP6waB z3#7)^R=`g|&sM&_rJp;v+xtE{rd@?&;*8SBvFg}{%hFExd%;QV_iZYk!Eo{G^XKBi z-{?(8L3+J22Gv*Xb{H|-_BFp}B+R4Yr1w_J*+jMo2r}iG;tXA51Q=I4J4V`kTtMvX zS|gMOo}=!(ai;)YR(2P6WUfCTqSj1(Et_{)$ALjCyTTRiN$DzZo2K2jLvhns9h-(I zrV5L0LFoYXvkXIsRD!I!UDFq=n}i1U03I-5+$EgZ+=A(OQ=0Gso`nFEdtrB9gARaX z!*Be@Xx=(uU-_=O-RpWPw1M7J5%Dx{)>3oi&JiFQWqtQR(&b`h&rI+nt25b{pf@CQ zdmRZ~I$s8_@AhXu`gmSb-dvY#Lw$xuG4m|!?Fr`?Y%O^iz;BO`v6odPwzG6ofEOir z$&oGkiP*1&yl&f~BeFfJHmzCC`0)C6wqSOOZEhNL?_L;7xdhkA*ZrinZ*<_kN3X_k%f`fmMaBG^(shiOwAS<1dk#_Kv$( z$a3Pdc%SzkPAF0H9c;DBsjD6Rq;?8kP&Uxgd3L*PQwBtWSe@0<35o+KGkGJ5#?PuS z>V$oIQkIWZC4&Wvqx`nBV^fwJscb`C;7NCYo;2GTD>0r0|G2NHN~t>~Yj~Liw4m)* z?(YIMafbZSd%bZvj4cFBZMs7nw|S;hm*q`=k;3GiS9t|A+)sF102{-<#SN8pi7urw z-ZS6Fl(IRgS44Wi7h2-0o^_o$Yb4YM_V5laX{MUHjhP#tqHJ+*pRR7)Gg;{_vJFii zU1M1#p)d%R)ulMvcElGivOpWyZ7^Z?#VPg`B_F5z1YlKlMvanbGR&v~H^ExZr>v-r zGY+K(ws@q!*m#cIT*~u9DxppZrtxK;uBRVa(YCb8?9lfu`;jdp^(EUm9oS54S?az&=}YkD4oqzh zW=`V$*q($*B>8j5pa`z%s0CL`7aw)29Gts3+E5}VB9yq90oY^;E-8J3vdRU8#2HoD z{kaok+4_CnL|v94<9-@Js8;}alxF8Zr-3MdVZAz!Dm;al zE^B^0P|YUwGI&3*ZyYYbm5a}+_J6kXP-~PNQV$1INxa^<9(#ZY;N~EtECby z*yG>^GpXx)tj698QR0Yd-l&0BwG!^?0LQ_WoBSoKxg}w)HJ{Z)+q(W%ea^8*>b3FM z_AbP;hMPo>B#jn>ToC-%ZgbP@@bbO~!6dN@@3&1~Wx9=(^DO}G{E5o3WL|^7oKvCS z$XCvSD8-~B%B76<=7JeWV?g-fO{4pOn0)pH32KWqj@TnG#pBbhNN1>4WFw{CL1wtI zeQSU(VXeZ}0JkMS@5}znX7(;xzqu1fu4?la0n5*A)JUkT@#g$kNDi7DsbN7H%Ht<9 zwvOw)lNF&CglqnsUWISN28d!07uuC*gp=*!rkprcw}hnl-A2;-=4$UXT3l7WiGQmJ`2S@P7Y`0XbY?a(mOZCrpHe*RA*mY#-ZGSmUcN zSlyK7{Oflxp(~aUX1NV{MUP5ebwby=YK&qJ!wFsv1x+H-j1S7&yFRotvF&)ApO?)h zZYKOmnn;y8Rr$M)7%mM=f%uA;cnKM!G?<1`&S+Kg6s)Kb4K`@c09~J1UnXt08QJxo zxDPb_)>OCRaD*3txNs#((t#&OM=g?qJU7(sKEsmiJhhw+Z4*F+Pn2{sfZZh%GDLA* zGI#L3aNps$erKBKI?$g*l}H9*O5jZ@(nRjq_hBWKF?M)tw<65(cbQCvFyg;rl|(N_ zk+xaYD|t+*JG89Y!*jg2W#XLVUhXPBhag&uoM)y$yy1KE1Q!!CA=dV13Zah9D*Qlw z=CO@A-z$5TX1c z4~I8|)|)j{YtLVPIy2X3 z{1ucqtDAa_|MmYMre?EYoF{@JWCNfi{7CWRszt@yyFW8dY}9K;Sx}tk%j$~g;2)xu zP>C1I2nC&ZZO`sv<4mSxeo%}$+n2yj6obM?o}HtB(aZ07T?=kN{D)Jt&6d_kxRp!o zUTe|%Ycyy}bQ~X}f0fkezBpz@e;%bnJsHOEdRgl{59MaKKD(0^Ck$`>tI76fT@^X>wVClCaBtlWHiyG!Gr!) zy|DMZiU~U;*zsg<-zT3z#4@(rrZtW*sgXL+vLYfDIJ3mDCrhufgXPzb{<&^)9aTps z>SdEuFd{9~(wdx%)NVZnI^le0{_B3mSAR40Rg&4Tv1jT-@ONF@B%UH8{vY#)&@j{L z%u1o*q+&VL^%p*FGZkrB#=YIrR9~`CAfVGa_9e(Y%ose<%N7ZIX`|MlBZVKau|5p`tugXw%he?cjCXjs3jbMMeI-5-$g&` z6v)^N|Ksj4PP{ZhX{zPQvRkI!f9Hh5g}6xgCHs3qA51VZ1$$^c($!99{(|htei+;T2s$(!bOB#)d&Hak&|5EE`STr=w_f)*hfz?!XafXQ=#Wu|{ zp=k4_r}@J010u^E(p%mOkAc)^sL(RXeTYQF`~^`GnJMEkcpF3`gkvVgb=2hZpq}&B zR}Zf*!?+Gge2nN-#byQL#DXLX_FToh6(PHM&CpI)BQ5iVs z{U{9eeq3@oTb&)1d@r>SI`2GL6B!vPHkJA_kXAvd)V6|S6vnL+dG z!nji~EIMy6nRgqxM!a2nakxvl?f%HeW`NNyP{<_&Y3BpFj{H@mYQPT8$;C_j^+VoG z5R-%EvK#F1LAK!8Ku7>G@O@UT&>#lbo z)&M95@!4i|sb^VAiu=!(3WC2I{=L+AC)MF4lV&Cx+Y^Lzbde49Y=I9fcfPtw@Ld?! zeVSzcnlAkQKalBqek0o<;#mBXaSZ<5wU+wL1EQH1$DUZcp;gJ01ENm-8=kVrq81oX zcPu0#g2pPUbdw}_UkHD=d>g+C<1rgL+o!xFWH1yip1F?f#Hoz^KZ2=k1$Ce@k=R^j zhV=<%H#P(Y3&6-i0T6_3Ik9T7MZd`22n-;j^TqOf<9t4$+*i$o@sTjTk~p2|*YX`` z-rU@3k|hRO2J@pRkGrKh+EjWiU9x-%@Ym}y2iaD^Blbq|U3IO11p6LOmp7_UBfCZAVixP1 zl;$oNcI6u4p9SfxzcFx=r^VNPiT%gidOp@J)8XxZiBBJDI^UCphDSaP31S~nK`&%0 zZ&3bI?{z%M_d4vWD_efLtfo~QddpL6LG^oACg8<~xW4dS&74#H6>oxH`zEh1JpK~~ z_Spfu)W>7Y{;GPC*KA3!ymZU&0l4T3J84eXo-Vy!<%|^W04PDJ@l)*uf5d@Sb;}I& zh#UInr+{UClg`46*w8TIZGeLLXHuA#(uZYdS;{LveSD)CzY9Akd&kT9o*IhLStzzH zyJgz-GBGrtH&(v9ywURkD3;EXshtsDoWF0|Ea()kTOk!i(^K>uI6mj9|KwFxA$V$;bo!uKvt{Pea_^G@oxQEK|LSL! zJo;y-xem1xh%cgU)2MEBO~!(I6TAqD5>y?Y+G#2yjhaq0rbUfn0?|O+jwTuyk|W-L z$u?g^`qD8_YauO2YoKz-?v@HspfJQDOFgR@Z7oiF*Qm!I;pI(KD}aX0@Q|R(Cjf}! z9zYM8?gQ3d8;!tjwdIno#2egCsWt)W>LeUQB)fo#<2X>(@WhD!IP3E!Ak@q6GIbo( zqRW@g?GItqpu4~SO96JJcee<$a`UUyY!M2>0kb}S>Lnk`YXaX7!(IU^m%scNpQvmOo{ZFy?8hjmt)DbjF<+7K9j=8APMMFFQ9OnYOX4SexEq0IcAmYSiAqFrZM>-s0o z=VFj^)Ok9U>)a>;O5WPv(YV$bdGz`C?IF;MgP`;778ivV%8NB4U7Bsh=ME z>}BcR#0O2%E0bs#_VNS8v1#)bk!Zx!H}Ok;yFD)1+}EFe8$Gv^@yB8&^E`7Kgmg+i zd>2&*Am~FY^T;o`3mk$P1%*3m_b{=P2U)J;y6%eTVs)6Oy!(lrmK0R=opKsN4Vp1}_Dmb6G1i+F-r}9_I?`}KIWp@zx9zJr%=-gv zL8xZ7n2yf%~u;qqkJ z&5;P)z<0@;hAgS-s}Uu3w83WZt9*>KZOxbSUnly1zyoidZx6>cp=V-d2)Jx=Og+7l z@>)TCw?tLAatxubeghnZ&qngkXLtA~hJPI(`C}|VYwDzCQN3VsX3KK_W*d8VTA+}s zjk;Hpk?4z--)qSM2BNnuP^1FjZp&YCy%{`jS0kx71Da1W+QK^E&T#3AFIj9N``Ckc zGz*05(=Z3A88=HD#uXw}`uNvxf%WR==vx`vmZ>!Rwq*cjzMY|zg{FXRx*sQt)Vg58 z&_W_w5G}b+VG?B6xn3;CttLxWj+Y6jA~WaLX!)Y=43gLll>lf1cMKzM)H7tQGtSn>JoVPcM1;y{lj(G(S-Y>kaZovg&ywb{CI$m0c^Jc{1 zB^=0kF<_9aCb7JO(lsj3>Jhl}3UBRUKW0b#C~EWLIN1xUR#V^%@)uSP1!%Sc`RUpurJP`GnCUl;DyvEXNRO zc_o(1Fyg?QWVtXQP0yc&X-o!8KV^y4G#}=96k0Lt}HzN*8W}|dVlTbE%Y!LsnR6GI-#Q* zdGsojX64yaaAOiJ!vg{5qE|;ZRs9&X9%jk@V6s#F>tNYIMd}Xq{uJOLGq30d?bh~4 zPtW{&mz5_NU3L_%dTmhZ356U~xO?xMtA)}) zI$n|gXUJPfJwvpN$h61=oT#V|w!G}TnNJW;5Z=2`(65cjT z507mT6+%$hegTdVg*{w{1$+z}xhe-U1EjDj404>U=1NtCoqYBvPXgYa&=mj~f1O>( zGYXb1Hh8@8<{z*aDROE)8%1XCX#cT5Ccc+jA$qaX`*z3SYrjeEgQ1cv#=93wt-AIt z9$Db#JUbPlazodSh>i9(A=3J$%n1bN#rli)N;C%PvD5I?a*L=~SaVm@MSAUSv*zOm z<(`!?0oT}{_-yCLf4lkpPBzNd9>i6`vQ;aPDZy_MWH!;V;m3rW6wNNkvJF5*Liqbr;19(d10P2UP!hlX7z(mxT$U!~$M~(e0WO}pb27oC zzXKNbr{(Btf?DAmq8bGFynwR1o~&}h(SVD6M97c^UyupO_Hd zzGO%7(tjM3FHgt+cMJ7}V>EVGDnzh1hW(NnWEr_!S!j7X zVa>;NidFG-g=)`McJ)mG%>KsbIFIuLxvP39qAAC_OxUEDNT_1!dm2BvYx9~NHFndj zFiMc(4800w^aRQ5a|{zQXUeRyQ7>+TyIp0SzIchAF-k#3=(Yk~xg%!kM30$M+Q3L3 zcfqHNx^L79UoOwMM=W+0p10@WEmbtfyiQoMV{VOoyw+Ib2c4KQzzNcC%}>W`&_pxrB7cI&IM~){!#$g=Mf>=iY!{{; z^LLb~1=vA1l=@IU56TFXJp@amsfO$r9`wwRuRkTTk`6&#Tk3nemSR?J1g)TU)8V11 z{~L&K+=RD4JAJda4<*RN?*rd3{5Bq7jV|N7OEG_?M=sA4+043rTizH-Fo0VU`kG!K z^Aq>wqUmnli!EMV!wVPL%sJU_#vVdBgiN8O=2TeS2v$UBFZiKZmFj(U2t zXIdvY%4Z&dDD{-kP1AC4&J*l#{ABm~A5s83;u_=S%eqNWxo~%q#kNZSOdSipPQ$AE zWWm98Gl+{faEWi}5GgKWalQRglO`x@qrmpud@C4`ieb%m7PJivv9)50SwmS_`II%7 zolEkDS~30tf=Ovn^FyZg+T@--KDy~r>|3J?Y5;5MhL`mRJirP`!-5lMzCs-VtLe(h zxK9DX73z|{AW{3}0_zz@RVF}Tn#uS^?!o8Ik(YGrK5)!ydlFqOdx@_-hUs;Dy{^Uk zS#%cr>!+SuIw3=ORTbi{jYJlSG`4Uazm>1gzf&LwEjX+Sy2bqrJ4#B#h8{Ni5p-AY zDqRFwY`mWO19%ZS8n!YEud)tt>z&psbxQ=wyQ*DNpYq!G+V%>OoQ4B_;E)z9H|7ys zY<`ad8+yz1M7f`(D;elhDKTY?q?g?V)iOX_5Sqf;e5b+%S5V~W#78lNVk?Y`V5yhi zN;j}CJ}$SA%G~)=|G)PXOp$SoGy^K=6ru^$9-1KEX+R_93*5 zj`3qOhB%GP;63o>HcGH-jqD@nM8xUStlLA#e(ae`9-c7-967hg){L`$&UHIj#$GQ| zfmr5MNCsUOqSTEAMfXO})j!T9S4jupxPXvV2|ylGmNd&8d(K@#`%DC{#^O=R+@n?Z z!Ppw0JH{gsl8GeasH#98o07cKRtHK9x1fVJd&pXfbO3GVCAT-FQWB{yE4zyrQ zL7H`wvhbHYwjh>CD#b&EeI@r3x&06(d|P>MKC8>%*Zm%=08_~0mRFsgH2Lk5u-zZD z#ap^8MQY(mUB61kpIZkK&fEGef{{`VdJji(9g9J=wb9=I_uR+GU1m97?E*wQ>k3R- zsBGW{l!AQjR>t#}8Mc@09GZs({5m}sd935Fpi7ZcgOxD?N!S;(-*o_yqoqNPO2AJ= zcj^`*@TIS5))a3lN#-OBDFcC>ymlb;!1Du>5YH;|K^kPBxtH{S#)yje&CK(rDtIlO zGTW#TR?L01x^yqU1jT_^+@w}fSS`tZ)|=K%jGvmTnUcmL$FvI`mO>A2TYrC{#PQZy zLRgik_y*|}SK&6V=l)(YF#O-Pt1rM#9BL4BJX3J+M=|W? z0ge#i+Pn~H0{`6?(c)}m;-Lc88C;*I_a={T3>@gTU#aW;r0T~f&@hiS9_BqHuEr|n+*Tv47Hg3lnQ?-A(T1b|8 z8&a1;JKJ_qZq2XuCHjUygz!#3_itb9)5%m zw)Uiz66;M~Jyey>ut-Yugr46Y2<+4rN!I&qzNBfpL?Q60CO}n%!557krm^O!j{nBr zU$gBZG~CtCtEin%P**XssL_mwuZVeCzf!jm@+DFjN3kcvg`sW7o|Ql=^+@zh*A0cR ze0=E}z5KSP(esjEJeuIgK;B_H&iAu4E(^{U)?q!{pWCckJ+ zlmwJb`=~CAmJ$q~k(gB~fv~PCpq>#Q!O{)QD|H&BNQD@NDg@kTqTc= zkv)5Wyqbc=?Nh9%!0fm0CN3-9*R|5w`-`piuWJLpTbt4yS(6OpKEd?Qw4cYwAKNy3 zV$m0I`|7*StKlafaBxtF2Q8i#<_ISblo1T&lC90$WTbUYz`W-djkN4Xj+c5KM>gz~ zNTOr>Db+jnWd;e;fq(CMj*d^XA%UxOtCSK5&PSO>91bSf5g~W?CkBqy7WN#CQ?&5p z(L%yS5K#t=taAu8_8^$al3E%R3--{Nfg#cbrW8h_6WR$yUUZGy3L*@?x>u-=4ZA98 zm|iftf1hCiBH3!hn>hfn0FL3MB>l}U3Svkf-(+2;LR;ThU$>$T#3@<4Pd-MkuU)ed zpn2zzA?|-oUC5VFg%&`3BT7S%zE)OW?HhV8Qr~UN!1X(0t+L%XIAP{kAEI4O7pnyC zMCOTK?*EU5 zckni<2Yr%YH~FnOt?91!d-1nDsQt{K%?SDCFBg&>r2RIgmtIlk_TsJPJE*?Kbwq|B zbeMtJ0^oks#Q%d*5ceVI`EP~nO)FDf=Ts5(nkdmBQAE+#%^vUWA&Z{&4IhGCdieT{ zf%HeZ6CBkF*(PoNW^tZd$&O`h|5)$`3)D=}qq&Wa1I`U56mE6KF$;*n)5G4LmkV5X z*4WI}E6Lk@IqDXdFK1}&TjyQdX@D=^YjVe`sB^f=x|fU3o4EqI0r)`ifViy;Fz4p| z%Ge+psrl{tX(wh-!?V;DTS_3xXxh=WOO{|T2iu~eE+1X;?iORZe(L-rop;;l(=-|$ zXzDA3jBa47yH1o1%{4R>{XUB7!|zRF^bE@!<|F4R)0~$xFK788-^@5V(>qQy1O45r zWG#x@s7Hp9&gd+_H9}`KmWxf)k*p4cFOP;qod9oTxDz&<*AeNOLENfNtCys^0e1CW z-#d^bhY!3$EZcbA_b{eEm^2p|*bIZq>pd(RigHAAG`L%6@wG|W;-_c^8RK3j0g*?a zu(~GqYYlscM@Lr#S4oSg7k~g>!zW40Y-iYb?@|B4UmozpGEG-fb zsQ05(^GYDs3G#GyXLCzU5r zD}``(5<}7(AuVrF55#vgnf58}`*3Dy+0;~iaH1Ga(y7=kEMY0Z8^Ca={ZpD>eL;!o z_lz866hkHZ{6sjC_|C%$1gEX2IprJU#y86Fip|ZD%^0n<&{k-V1v_vf#YlIVEFbsH zzD?sv%XzSnx)^}faOV=;81Am8jyt*MJ7<`<(o!J1lCQ@>ex@FTK&~9cZ>G%p7rknI z4Z?G|B~)JZk~}a-Dnou9Esa;|P^vsUuiW3|7EaWk%AYxWd|)0kWuJPB8i3DyYhs?l zr@GI|8I*x}AU4tcR6LDGCoq}bVNh7xIia#PY$ z0P4Q}GGZ)X)rD81HR1nwU$yLWdY|Z7i}t4F)ET<%Zn*I1sNYq&yz=mc zYOK^y{&2joaOFX+ADNAVp^>-DnV=)XXt4{`&TKOk>Bp)-aN8L>Zk!sT{K1;q^yjU? zoD*~g6v5m1iIWGOez7a=Qa(0cM_tm{GAnyQES_90sTW{c{%b>6U(=_>^4M`&xFBdv zpDbweBV=mGVTSCCY%Ht9q8oO7;M8_ya$~M!#$I`po(aC1fdeJRDL}7=J@sEXNICAO z^XuS>lMA;_L>QN7wyrpbUaXa#S2xV&=p4xSJ5AL++Cqb)gl}=fLt|x?cx#+d1dC)< zww)izVt>VAPFM146bE)x_diA8wGwSQfyr!IccmKB&F@)?& znR>$*Kw)oDMcks!r1j{0)3j)oZ{SFp3h+)vL=GIi!*iGRDR8A})ki@PUi;lUXa^AIxqLT0@U%Ac; znvI9eU6}8lP66QF2dR#!Xnaq19gcg%ihay`n-;Jjw=cVX$Rfmkx{(6Tf3z$%4F2U? zk#IGrEp(NAUwUt9$@D^S*3XrN_`vjU#+_O1*J!BqSJI|~>`V=7E1Uz zqK9;Ga*_ZvxZ;A19o0`%r%J4*{E-_QB#JPQ-@s$BC0+R zS<^r`w?6q-I>dKQ`!S5oZ210}`DRC&fr?=Obw_Tm`K)dc(6Af2!K`*$=(#Hp_E&#F zMCNXgg7G%WB#a7ws<-T!AvWLLAyt`!v zBi*!d+k%3kEO2<6Dvgb?iWdLYw&=S-UfkdWO9@D1fcLiN30g1mwfj9is??7&dlPNR zD`37EAr+)m^F8-7cC8njj~%_=*Pi1@OIP*V&OJ1br7_DN*f^I1?cp92dy4D#VtUi= zt`5}+SBuS!2jXSKHAVHlFO&0V*MPnbZOv8l3jBMQ6*ED!eSH>UuJ(UGn8~qjmUuU1 zR+yQcPmfp*)Wz4fMiAzh7i5%rbDeoeQSN`H@?VMXKAev!ESl;2Q&VBA4diojqV#Vf5#YXrchz|j+JI1l9!4RD z*k|P2zpU<}K>PA?vI4sP?T($GAY{!HPOLXw=VKI+BU)h*V|6fd{I)GI@)n=K`cLe6BJ+ML8xO|T1x}yytaE=-7xGZ1oFnqFq{->pbo($ zpeFe>P*c+6!6|<30vh@x)qInzD1R+$BY>Ktvp0XhQ zdhW&=!rb%`+S6o5E2{r&mo^MdcXHvq+!Ldq{gH|g`PPVSziS(iIMtC-RqL9F{VRy$ ziibx~9+6ZYVji}EA^jKn!8uY(TKl6;t`SivBZu1~SE3kPi6DbSMzG&J{ zW(==!`}Um9)hd(AjcTX%c2&d0Py5Xscyf!{^-!YEwp6I0?~9nu_S=j~ep~X*JlUJM z_XG89Q7;DyU+FND->pot6hOhB>{^ska%V&ZGb_)#JFsrPzfB6=P^|mRp^og=HV>90 zgz{Vc9ygTyy?H)m?DbE=5kTYF|<5n@||Ghs~$g$uGV6&oA&KxcUx`QcLim6odM;rczOF^E5p! zS8tvjB{oq>T4+HmQqlPUd(Q>uu5#}zfGUL`#xo0o^zQRmSNut6G=yiZ z-$mTra?R>?&F5LLDW?st-1~xK;n&@%s}At-`cEOb_&eJ$7Vp3CDaDbKZx|kTUTLb@ zO{W1`FDsaiLGHnka@JL8`k3vIWB_#?R7iaTzM^GK0 zR>y*2+@ZP~E^+O1F0~|uw{jeK^f2z{S$NNTt8~j4ie_P!ts~8sthIKpACVP$9|(G3 z6Wkx0BkexyZcH&w%l~W0(D2%$hI)+Ry*A+SkCpup zl!86BtS0WhZ>Ue_YjCw1zRSmaF1Ai4>zVJN*%gWNWu2yA2o6;$a!0nmeW)0XeUSUq zkHHQnj2#@`a?Y!_6Xgo>E-|KhoOEH2OS^1RrE^JaBj*FvtU9b96#;^D6ncCnY$g2V zZ)8+9c`s`iPOqQVdSj8E1WJ`Ek@d@AXTsT{UUR0zj8O0_PVwoE&@!5P4}*)I=aRq(V=5hq!UY#T33tl$(>|wF?4|&TC5&{$-?`!A!g?>YyQjgmxKcVZTtY%79 zgu;8?fOr1@#owa7{bKHuJcKARf?7*H(|d`(Z+9o%U-Y95BO=j^yr7ny9rUz)CjB8| z%kKdbQu)!uOqjAIyEU@9acF~)1<-_M)3jyok&Cq&X()zrOIbPx;#3f$TB8iK5gu`d@nu#D|?f6RJRUf1?UIa_&E)l_MN|{j?;cMRcVV_I1bvkA+u_PJ2ZvylLP78-B|T$>yUM%xard7K zd|~xMDu2c!^J0(lDDqcj(PCsC4aLumd+#C8Xz0_+{i`qPVdw(ET==yPHB~t zk|#_5Vx6>7uSnAds7%u$Qtql8*)hh zJVX~he({~dyUN?AG#AYAQGl1%uZpfJthN-zNNypS%>JQ zbHUv#AI8mW;cR?Ob%KSt0RtHJl8S*&0tq^W1tiPA^{qY5huAza~x;^xh>2$e4k}tU&dd`t@2%L=|s`>Vn#eXtb8~<)lR0V*uJ36EU zLMAxF_YuTw5slY5t2u2ErV5L>QWY9fr>RcAXRR>zSulMGQE;f<5K*e4ye~udnHM2Y4vsdSO=sDd3q-Rz4$IafsVXNYjg4xJ#%sl+SZ9l>Fvkmz9I43%^?`}f3 zeQ_o^Vr9Rf;&w%ebba2)%6dxYU~1<9?GvPhM+3FTMiy`wr|x~yvivzQiiEhmE2Y^$ zwM`u=w_&VjLUiv~taQm}(Um&a83x$^eXtzdbVHQl@1UkQ?5`t6hvz&q{D(*H`g88e z(Wu|b-h!<(WNtb7pbR0JfM;?l_zmjTnR$-z(}mWOUy{d)p4Y1BGikTe?NTo`>87?D^ZU`5;zFfQ?{ ze`B~HGPZYxFzuxMfIaveDI4Mc{4k{1A&hYDJYPw1iIM*Mv-9Cphh^dK^1{6-3&Kt7e833Y^blH+eg>3&wY#>-`n+SF`<`ib-1Je zUM;1uWH7|O>pnYlDG?rm>nfOoMrLP)4ef!}2k$5vG#cHG8NK2T?K)PE#UKCN7@x#O zI(4K^WK29s*0N5<1vIY?OH=Vx;nQpm0Z8J&$H=J*cV2{siobI?{-W~ofyN~v!h%BC z5^Mt)I`bs|cg0U*im}S?Nb~9DkwAXTacwgG@fv@h%0-ZaHjX>Ze%l%oi)rR67~rX@ zr=vd>+)r==bMXIrUfA@ILt%>JePBZz*xD3(#CKgFf8fiL=eecv@cRVkB0sezN46^k z!#~NLHxF?IX1xb9zn#p*ZAAX(s*zyQ!DqEOjlSNnd(qR2vs2jeC4ERefrOoM5KCg> zcD+y$pujs>5Ru*C6pw@YK;Q^@H%H`5-`L=m8$(GI=*10cM3Jn$AnI@bYSDr!j$g=)L;D z?wsZ)KBRvNg9(I%zjDtNzHibXpCDOPI673s#o1b|Mt-;5IriWwvJ19oqAnLre^NAk z_bd=Z^b>wYCJ6z{>i`8Q&eCPi(>0{KlXD37gu04;DrAKoWhTrLA)8Q~& zwsapx())H4ZW?is*|!`X^f6lk#ILXX%hO;VGtAleISVD(R3^+7i`h>0njsFzvwz)U zaF$<#Wv{!&7onCO(ttj`j^kr1ogLNLli@Yi*CkZHr0^7q?O!7*lXxq^v}f1XJH>wM zlX~>nh_?zB^@yp*ayXyrBx5Utz3H?l_XiImQR`YIfqrb;?bHZM$f%aeD6}YHNH>I! zm;PK=p{~SI@A8Bs-yVe)Y2fCNG#ddtaRuF5D}5c&8E0;y*|aLiyz9mo+Hq8k@=H(_ znC`s}P?ku)+Bo5H>wIFxfK3-jeFKDUt#rR#WML4w4OT-O%!K^KIX%w1 z)$91+!#8f~FKY{AKJhh^tZ0Z}U_Fan);%%&r*F20I>4`;-7bo2w@19M-G-gJllW{Y zOF4T5_3382w%$&ls8gYULEy%ofL^t)z_SnN*qQow7B_{?{4d2v^KH%J^^3l;3;0C_ zGA?f_Ke3aD;saOvZ$OajMW14KBhftB>iN0g_ky{d-sb`DNBf^W zUGLH!j1{BM&z4ek7JK2Zz8ob@OYBngm4{G#0r*7R@^VwpjjF3#4&E|E)4L8DoT^>7 zmA0&=5xv9j@!y1fGkpTeIJ@^6ZZ{ut|O3>*ygk=7sR)WEj^8B_n5W z_epsq$?A0J5U5~kQI4v6NB7up0S!#pAng_>-~|-!v7$W($`E^PQIz&0N@h=vVr=^J zf(rpeAXobEItlvMwT>Z>7nL-Fbp!w5xWSrq2b_$CFpg2^{igMV3`1x%oLjqxh&B@x zvF_q*H6|16fz}N}boa<0)fxNS_#f{D8Jp$fC@p9^N88-4J*FlaKYVjC^k~@hs7}`2 zFrYQMZSU8T0}?^?TiC9T`Pp7CZWPVwrQ4_#47{|gVKcr=tPkx57*+?s>t+pow;T*W zgMsyg0g3=&cNy>?gV`g`Qll$kVFn}S<&K%2|p)vMZ?ya4R_k4M^g z6qsP~*~EyLM4P)($h@%!7lfNxJ2?RbRQNrhlzb3S_441OwCgLJI zK{4L6Zd?EXiJD4&Zi4Zp^$_cY@KwYd)kfg1TZY~+gGR^%E+cmk81Ds7DrT+XTm^2P zp`Zb`-y&hv3z?6tbWCJixrkwtrGjf?a;AY)K&d&~){D|}mW~)B24Su#nqZ~4?t`8m!VU*MZjXeWcrvi$_WdUN@Sk5eo3Lom zId=HY0KA-%O}#Tf1)XP!FdoKH{O8cxFNA-XzV0R{8o)ErZt>EfdN2Ts!EM^d&X(~0 zGxr9!<@gHAlAFV{O5^PIAobAQx{kG}b)6Eo+`furu9>(3eRdQT7Pwpg`qZ*QfGSxc8EkC-6n&^;!E(DgbdBur5>aRF}p zCARV{kJX>T0iCGTw7_q6;UO;Tex{di90N+aDm3V9w}@?gK80dHGS?mSeM0%oe~55S zuxc~3vH+;AVr|A<;49HSce1f3U)76PS zpH4u^Y3MyxhzEVq)6Jn)+NYOq!eWb79+1ptY%sH)Qei!+rm=&8w@JRD@q^f4pVr5B zvmy30PaonWe{Vn}fT7X$+7uXcFjy~J|D!Jd==t|rO@Iphgn2h4nJW{l;@gVH^7uFN z*ERIQlQZd;RA!0n248XPSJ(Jx764nbP)g!8H3hciB1YC=y^X+tg@6np1Jpag43hbF zhx-%xzLO6>8p)_mt5t=I6zQN}(|qh=n^>|_;hE=={4{Oz$z(i{-7=EH3F7 z!TK#F8gn$-vBw1pppVUU&!AWkv%oi(nkwyBM9_ZjyT%u_B)fGIpTZXi8j+e=HFWGLi|{XHPVN{4TE{6}bNG|5wMPk5Z-Muz8&5ADlWN)=p<1$lnN5N2eBZ$zHE2C z&^#m#+CjF5L77xKm*VTUi$MOKfc<3f2n+Be{V(i`0EOUX((UF*gTqt#k!8KoMS8@A zR19%6+WYtTwP&kXE67pIPdpTS$mPONS&CVmzQ_`|v$Bk!?o@j_T+Ho$IL6Qy8RVKr z_w?uF_BJRFbo^r6gmDVj;6)uA_+u#MS2P7^Re3qy#k+j%@Tu-XPB0Tu1aQWT%MU|o z;Km@N6!)S(Zn}7G&F1FLt(%;6x1C`0)lT;MgTnoITwJaH;74UIowwc(EV*K>EU^^d z-hwA7->;`rzJ8rgRxsZbSz4e?%I?|p0NLc_n&|rQaIF$^)m8-(Np|JB{FAfh?71p; zKfIaf%$eR}>l|saCe4WAQVa_T2&K%b}I<3QSrx{P| zctx^LQu5d;)E!VXubwawv8K@t#V!_v&ifH3wIWKd`K2%W#mw!?y9+yX=${IbN2u2f zY3R!L-h|{RRft*#?DPL+S}vv5mbhhI^;>TYkv^7S>dU}ZxUhrw^g)^UKz{ctR56L? zd3kxR=jY;}U=1%OtO$t_)8*UwHmNR4e*lWyx4Z4Gb8;-u1 zeYkP{c|v%8s%7qu3B_D2yq?x}{L*!FP46e|Axh)sJrrZ_cC=XYs{J4toEA2nml^k~ zz@S@rlR!|T5yNsHW?WHG!89B$hufd?ZTR)l<`gF;A+M`Hxz){~WS>>VAAsII$4_XV z)~xdUMbzfmnRa&4rJpZ+r|1_`u+~V=q`3FTDnm>lU}sKiDN_OU?ymGr8}#SM^%4c>>u>oYOev~Y^&_lnj!)SM=-;W{W&FGdY*}Fbbwz**W&Vl7%$blo zz{|NRbhf4ZibQObUg$S=H)M`W6x4I(u!9z&tDksHrqWS>A~Zjk83eY#NGXu?8Bgo6 z_zPQel|4{C#vgCR-vzs_6F0}N@=!g-i?**Au4YmD7_C!D(nDS2!CSk(zU&6Kz_Z?b zg|*(U9xbKx+ZXZzea$?;f=QT?3{)cqYd#cF>e(Fg%w0%$#6Kv3&yr0P5 zKOz@P7Mkzf7qTNHYMHiL1@9G)Dl%$$!hG?8^m}O{A|lj?It*G3VR_|-TBD|{B9PHN zFUP*b5q$prz2aXN_Cc~=WrrY3>hvzv)ac$o9T%W=R-QGUT7tR@E`dcjjn)z=V0G$A ziw)m=3dnfuVr~y8E}k-pn1yX&L=*G-t!-$GI!^{)Gji{tQ(*fQiP^mbxmr6;0vp|b z)dNt*18731)G)FgZZ4c1`vym166qnZLCHntUKU-}`hczkMsEFp9uzKKn%w3p1QTR# z4n2so?V-526IVsI%Xdud)RU*vLPcLgfA4AyL?yg8F19`0I+v&@^P@D^kdY#K24$3y z8N&GI#DG%uX{Ssv)EXO)BtP#U`fc9L8;-Nk@Q%sOK-pq@1_-`u-EW!XgL$ji&ylj>#-4VTd$v(i`MEZiAtOr1Mscc%~U zHwFD@6pw|id$4}%F{&bCqTudj7wNyKIoy-#AOxMyo)x2L_J+SAPU8bsBs7@ynaZNl zTM^S^l^DFg&RNl1=DgRC>cE*qZ~Lmu-y}!#>@?&IyW$b{Hk2^GNLK@4izBEA^p}6) zDOeCi-BSD$!d>5qH3=6wRlIFu!^&()d6Ym? zR`Y${qWg_INp}I<^5PE*|BxU=a;LEJ=F&xxvREZu=cXIw;i_n;61_`1iPF5M3Hac4 zY@`Z}3;A^mJS{m!GU13278Pn%KtOQ15_=4qOC`6!g{;^&KR1E#SA(0_s!(Il09g**Z926d*COG|MCk9mgtAot}A!; z-8X<=L${lasF#7iX42-z2Z0%h){FhL(F}sT-IdV6|&?X3~e}e;SNtNkfs(nroS&$ob`P z`JL*PLPVvO=9Miwc;CXULNq>{r(@05TycaA&q&m4ACM?^l@i zP0ohh*!XfvEKmm=ICLw=t8QoDz5f&Yc9akFJJZ$CDm2gI@|6B8B9FTLvM;W?hSF*$ z!wR(Poc4Ps5c<^L%%YK!3oBS?VgWc$RA8vbvYG3QjcdqB8I#=Dk=F|tJTKt!n1hXZP$T0j=ry~B^gGrJt- zTFqm){)WujG9FFrRfHK*5%&go?W{3*Vo!egou>Del*`X;1-d$F&FJ1RS?R0EpQ<~4 z96N>Trzhxd9OAWSAC%!=vZ?xTJZ66P2Xp;(>mw2)qETfi^pnSft+EG3E@v%+0}$?Q@YU__%e#L1$N`~8YZ=S)h4+xwYbqmSX%Vwjsa z%i!`VY6A)8FaDcwsg#?UL~9<9uPZRKvbW6KMuW2K>oJn zxAp02U(5)O0Ku4khR;2A15|guoW0lhQxWoFoy$dP7R$$D`^T&tt;8x}AODMm?#I%G z)iftnUD9S%9}Eagl@w!v!9CfTLOX)P(;io|lHzUG^YWGL>f-IpGHUa$KMZVO)~RYo zXAyosWy8;~^cm+}q)MQI=bcIc&Tnw@YCA8<65)n!6o)(KivxY3%o&ba1W+pRx9CjK zyT!8+`JqjG^0o*)VcVXqkIgAEgbY~822sxUkFWB2Op63#s^+M^Sew;0ST74&cAl0? zjKkq)BpPwoqTf{;tdmog=EAir5h`PNB~?;(7l|a)B`xTvuPM>ul>L5Ty5euT7Yl&y z0cIENzJD&$4K1G0BT-@w(EOE(D3Y-GKvZuiNB&+pAmvylAd+HNRv~JqAbd-MUH*Z? zs@{C;B>}dhRJyztIur642fcaKpM1eg!iBm;Ay6k;l3b+z$28pu<*V0GD7mSx)`*KP zM8vRt3EFXH^=1XW4RgA_&~&dm2XC`3skU}QcDN3KX{D>EOAH)RdkgsXK$%aRBQzml zvsV1$Z!kR+^cB4)W()crQ6A;sqc*JxrV1@>Ld@weKNi7^uY;c zwksR(9X;e+T;d3ly(vcv>YGov(CxJ1MooWBzk4tJHP|i~=AUosP`$5e46vqlb@1~2 zEY9BxdmoAK&MCV)qlm#7L~<}SUOgFMGN*qy?d}Zkw(c|tl|uuZEg)q*m%JC)OtUp$ zl@nS8xxretR&nTP4N;9a&4$ukD;Ef=fErRlwcimUXFjP|d??!L7RP{Kr%lZt_~r2- zSi;N2Eyt-d0zbC;rQNAkM4vX!0Ygx#zaT&rMMGZRFv~ZIUo|$yLsiq(2KRwTq*bqb z&y-8+lgGFqUlVoquVw)uL6MjVdOiWM#a0EJI=qH5RSZ^f?y@i+k7lQ2jd&g`Ln(-% zf(yQCeV``fjFX&NxkN87)P?LHaP2XSDR($Um4CUnZ1MN-Gy5S2UsesWlZcP|^Ot3U zKnJlO&hbskdPNVj1#9%DS5K2^?7jw>m@ z?*=0O2TkEXbP-`jejFbI-u+mR!b^wK>ESUPxHkrivA#~}j+=ifqXp-O^zH?pj@@M! zG%DEcj)%a0OIb8<`3)>@KuO*UxDWc5E%(;n-co$bzG3@5O7kDKky9k={-bam?_=0P zHP?6GAqV?zdl#&d8nHb1Z2GcI;W}e)!}4HwX7fy{x;purL-DC4(Jy;%FmMD{wW;K` zzEs7GeeP;ADT4fWy4~plQJ0lSYAPoeYXAfmGX07e;w;mMF69)t#TIhL>p%P@Jceg7 zox~^?Nydh!Tun*8E_Bl-oZK&B1inS~qY-c+%% z7Lt&SRyb}27X-#32r`x{`$(2d`Z`(jFmzM!p1i?mI?KGS8`5RbHh6ONvtluh?0@ng zds7VP4CC_!eZqm+YSZAK-;1BKYH;4Gx|*W`QgMya>RV!mh#Rae0ow`fuW<(LE5-fg uTQ9E8UQU~h0Q@w&O*eFVXdRwuzOR?};pN=FN3^p>l9yKgRQb^;@P7d;+S + + - + {% endhighlight %} {% endtabs %} diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-app.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-app.md index e1098b870..91263ff7e 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-app.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-app.md @@ -247,9 +247,11 @@ Add the following stylesheet and script to the head section of the **~/Component + + - + ``` ## Adding Blazor PDF Viewer Component diff --git a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md index 1dc8d4682..9ca43aeb9 100644 --- a/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md +++ b/Document-Processing/PDF/PDF-Viewer/blazor/getting-started/web-assembly-application.md @@ -143,9 +143,11 @@ Add the following stylesheet and script to the head section of the **wwwroot/ind + + - + {% endhighlight %} {% endtabs %}