Added library license validation check with a detailed description

This commit is contained in:
MarcinZiabek
2023-04-18 01:58:40 +02:00
parent ef89be9710
commit 76844dc8dd
5 changed files with 84 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
using NUnit.Framework;
using QuestPDF.Infrastructure;
namespace QuestPDF.Examples
{
[SetUpFixture]
public class LicenseSetup
{
[OneTimeSetUp]
public static void Setup()
{
QuestPDF.Settings.License = LicenseType.Community;
}
}
}