Parcourir la source

Adjusted license related links

Marcin Ziąbek il y a 1 an
Parent
commit
1bdccae901
2 fichiers modifiés avec 5 ajouts et 5 suppressions
  1. 4 4
      Source/QuestPDF/Infrastructure/LicenseType.cs
  2. 1 1
      Source/QuestPDF/Settings.cs

+ 4 - 4
Source/QuestPDF/Infrastructure/LicenseType.cs

@@ -2,25 +2,25 @@
 {
     /// <summary>
     /// The QuestPDF library is available under a hybrid license favorable to both community and business users.
-    /// For a comprehensive overview, please visit the <a href="https://www.questpdf.com/license/">License and Pricing details webpage</a>.
+    /// For a comprehensive overview, please visit the <a href="https://www.questpdf.com/license">License and Pricing details webpage</a>.
     /// </summary>
     public enum LicenseType
     {
         /// <summary>
         /// The QuestPDF Community MIT License is applicable mainly for companies and individuals with less than $1M USD annual gross revenue.
-        /// <a href="https://www.questpdf.com/license/summary/community.html">Learn more</a>
+        /// <a href="https://www.questpdf.com/license">Learn more</a>
         /// </summary>
         Community,
         
         /// <summary>
         /// The QuestPDF Professional License is applicable for individuals and companies with at most 10 software developers.
-        /// <a href="https://www.questpdf.com/license/summary/professional.html">Learn more</a>
+        /// <a href="https://www.questpdf.com/license">Learn more</a>
         /// </summary>
         Professional,
         
         /// <summary>
         /// The QuestPDF Enterprise License is applicable for individuals and companies with any number of software developers.
-        /// <a href="https://www.questpdf.com/license/summary/enterprise.html">Learn more</a>
+        /// <a href="https://www.questpdf.com/license">Learn more</a>
         /// </summary>
         Enterprise
     }

+ 1 - 1
Source/QuestPDF/Settings.cs

@@ -9,7 +9,7 @@ namespace QuestPDF
     {
         /// <summary>
         /// <para>Please kindly select license type that applies to your usage of the QuestPDF library.</para>
-        /// <para>For more details, please check the <a href="https://www.questpdf.com/pricing.html">QuestPDF License and Pricing webpage</a></para>
+        /// <para>For more details, please check the <a href="https://www.questpdf.com/license">QuestPDF License and Pricing webpage</a></para>
         /// </summary>
         public static LicenseType? License { get; set; }