Skip to content

Commit b3435b4

Browse files
committed
Addressed CI failure issues
1 parent fccc2ae commit b3435b4

File tree

5 files changed

+3
-3
lines changed

5 files changed

+3
-3
lines changed
-45.3 KB
Loading
-156 KB
Loading
-35.1 KB
Loading
-32 KB
Loading

File-Formats/PDF-to-image/How-to/Run-NET80-Linux-application-in-azure-app-service.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
title: Run NET80 Linux application in azure app service| Syncfusion
3-
description: Learn about running .NET80 linux application in Azure app service.
3+
description: Learn about the steps to run the .NET80 linux application in Azure app service with the PdfToImageConverter control.
44
platform: file-formats
55
control: PDF to image
66
documentation: UG
77
---
88

99
# Run .NET80 PdfToImageConverter Linux application in Azure app service
1010

11-
To run a .NET 8.0 Linux application with PdfToImageConverter on an Azure App Service, you need the libdl.so file to access the pdfium assembly. However, in Azure App Service, the file is named libdl.so.2 instead of libdl.so. Therefore, to ensure compatibility and functionality, you must manually move and rename libdl.so.2 to libdl.so in the Azure App Service environment for the .NET 8.0 applictions. This adjustment allows your .NET 8.0 application to function properly with PdfToImage conversion capabilities.
11+
To run a .NET 8.0 Linux application with PdfToImageConverter on an Azure App Service, you need the libdl.so file to access the pdfium assembly. However, in Azure App Service, the file is named libdl.so.2 instead of libdl.so. Therefore, to ensure compatibility and functionality, you must manually move and rename libdl.so.2 to libdl.so in the Azure App Service environment for the .NET 8.0 applications. This adjustment allows your .NET 8.0 application to function properly with PdfToImage conversion capabilities.
1212

1313
N> While running the .NET 8.0 PdfToImageConverter Linux application on a Azure app service, you will get the `TypeInitializationException: Type initializer for "Syncfusion.PdfToImageConverter.PdfiumNative" threw an exception`.
1414

@@ -20,7 +20,7 @@ Step 1: Open the SSH command window which will be present under your Azure app s
2020
Step 2: Now, navigate back to the home location and then navigate to the usr/lib/x86_64-linux-gnu location in the SSH.
2121
![Navigation to the libdl assembly location](Azure_Linux_Net80_Images/Azure_Linux_Step2.png)
2222

23-
Step 3: List the asseblies present in this location using the `ls` command. You can find the libdl.so.2 assembly in that location instead of libdl.so assembly file.
23+
Step 3: List the assemblies present in this location using the `ls` command. You can find the libdl.so.2 assembly in that location instead of libdl.so assembly file.
2424
![Locate the libdl assembly](Azure_Linux_Net80_Images/Azure_Linux_Step3.png)
2525

2626
Step 4: Copy the libdl.so.2 file from this location to the `home\site\wwwroot` folder and rename it to libdl.so using the command `cp libdl.so.2 /home/site/wwwroot/libdl.so`.

0 commit comments

Comments
 (0)