Browse Source

Fix build: cannot execute GeneratePdfAndShow on CI

Marcin Ziąbek 3 months ago
parent
commit
fbeb22e850
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Source/QuestPDF.DocumentationExamples/SemanticExamples.cs

+ 2 - 2
Source/QuestPDF.DocumentationExamples/SemanticExamples.cs

@@ -103,7 +103,7 @@ public class SemanticExamples
                         });
                 });
             })
-            .GeneratePdfAndShow();
+            .GeneratePdf();
     }
     
     
@@ -261,6 +261,6 @@ public class SemanticExamples
                 Title = "Programming Terms",
                 Language = "en-US"
             })
-            .GeneratePdfAndShow();
+            .GeneratePdf();
     }
 }