Sfoglia il codice sorgente

Fixed: The library now provides hints when an additional dependency is required.

Marcin Ziąbek 1 anno fa
parent
commit
82b87b77f2

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

@@ -76,7 +76,7 @@ namespace QuestPDF.Helpers
                 var hint = ExceptionHint.Invoke();
                 
                 if (!string.IsNullOrEmpty(hint))
-                    message += $"{paragraph}{ExceptionHint}";
+                    message += $"{paragraph}{hint}";
                 
                 throw new Exception(message, innerException);
             }

+ 4 - 0
Source/QuestPDF/Resources/ReleaseNotes.txt

@@ -18,3 +18,7 @@ Further improvements:
 - Performance optimization: improved scalability by limiting the maximum level of parallelism
 - Performance optimization for legacy .NET Framework: collect stack trace only when running with the Companion App
 - TextBlock: slightly reduced memory usage
+
+
+Version 2024.12.1
+- Fixed: The library now provides hints when an additional dependency is required.