Browse Source

Experiment: NativeLibrary.Load

Marcin Ziąbek 10 tháng trước cách đây
mục cha
commit
a08aa5f183

+ 1 - 1
Source/QuestPDF/Helpers/NativeDependencyProvider.cs

@@ -27,7 +27,7 @@ internal static class NativeDependencyProvider
         if (nativeFilesPath == null)
         if (nativeFilesPath == null)
             return;
             return;
 
 
-        foreach (var nativeFilePath in Directory.GetFiles(nativeFilesPath))
+        foreach (var nativeFilePath in Directory.GetFiles(nativeFilesPath).OrderBy(x => x))
         {
         {
             var targetDirectory = new FileInfo(nativeFilePath)
             var targetDirectory = new FileInfo(nativeFilePath)
                 .Directory
                 .Directory