4d1db6b76e
* Added library license validation check with a detailed description * Improved license-related message * Adjusted license information * Updated nuget license * Improved grammar * License message: added link to license configuration * Fixed build
15 lines
291 B
C#
15 lines
291 B
C#
using NUnit.Framework;
|
|
using QuestPDF.Infrastructure;
|
|
|
|
namespace QuestPDF.Examples
|
|
{
|
|
[SetUpFixture]
|
|
public class LicenseSetup
|
|
{
|
|
[OneTimeSetUp]
|
|
public static void Setup()
|
|
{
|
|
QuestPDF.Settings.License = LicenseType.Community;
|
|
}
|
|
}
|
|
} |