Ver código fonte

compdfkit(wintest) - 密钥逻辑同步

liuaoran 1 ano atrás
pai
commit
ec96ec2c9d
40 arquivos alterados com 95 adições e 101 exclusões
  1. BIN
      Demo/Examples/AnnotationViewControl.zip
  2. 2 2
      Demo/Examples/AnnotationViewControl/AnnotationViewControl.csproj
  3. 1 1
      Demo/Examples/AnnotationViewControl/App.xaml.cs
  4. 27 0
      Demo/Examples/Compdfkit_Tools/Common/Helper/CommonHelper.cs
  5. 1 1
      Demo/Examples/ContentEditorViewControl/App.xaml.cs
  6. 2 2
      Demo/Examples/ContentEditorViewControl/ContentEditorViewControl.csproj
  7. 1 1
      Demo/Examples/DocsEditControl/App.xaml.cs
  8. 2 2
      Demo/Examples/DocsEditControl/DocsEditControl.csproj
  9. 1 1
      Demo/Examples/Examlpes.sln
  10. 1 1
      Demo/Examples/FormViewControl/App.xaml.cs
  11. 2 2
      Demo/Examples/FormViewControl/FormViewControl.csproj
  12. 2 2
      Demo/Examples/PDFATest/PDFATest.csproj
  13. 1 20
      Demo/Examples/PDFViewer_new/App.xaml.cs
  14. 2 2
      Demo/Examples/PDFViewer_new/PDFViewer_new.csproj
  15. 2 2
      Demo/Examples/Samples/AnnotationImportExportTest/AnnotationImportExportTest.csproj
  16. 2 2
      Demo/Examples/Samples/AnnotationTest/AnnotationTest.csproj
  17. 2 2
      Demo/Examples/Samples/BackgroundTest/BackgroundTest.csproj
  18. 1 1
      Demo/Examples/Samples/BatesTest/BatesTest.csproj
  19. 1 1
      Demo/Examples/Samples/BatesTest/LicenseKey.cs
  20. 2 2
      Demo/Examples/Samples/BookmarkTest/BookmarkTest.csproj
  21. 2 2
      Demo/Examples/Samples/DocumentCompare/DocumentCompareTest.csproj
  22. 2 2
      Demo/Examples/Samples/DocumentInfoTest/DocumentInfoTest.csproj
  23. 2 2
      Demo/Examples/Samples/EncryptTest/EncryptTest.csproj
  24. 2 2
      Demo/Examples/Samples/FlattenTest/FlattenTest.csproj
  25. 1 1
      Demo/Examples/Samples/HeaderFooterTest/HeaderFooterTest.csproj
  26. 2 2
      Demo/Examples/Samples/ImageExtractTest/ImageExtractTest.csproj
  27. 2 2
      Demo/Examples/Samples/InteractiveFormsTest/InteractiveFormsTest.csproj
  28. 1 1
      Demo/Examples/Samples/LicenseKey.cs
  29. 2 2
      Demo/Examples/Samples/OutlineTest/OutlineTest.csproj
  30. 2 2
      Demo/Examples/Samples/PDFATest/PDFATest.csproj
  31. 2 2
      Demo/Examples/Samples/PDFPageTest/PDFPageTest.csproj
  32. 1 1
      Demo/Examples/Samples/PDFRedactTest/PDFRedactTest.csproj
  33. 2 2
      Demo/Examples/Samples/PDFToImage/PDFToImageTest.csproj
  34. 2 2
      Demo/Examples/Samples/TextExtractTest/TextExtractTest.csproj
  35. 2 2
      Demo/Examples/Samples/TextSearchTest/TextSearchTest.csproj
  36. 2 2
      Demo/Examples/Samples/WatermarkTest/WatermarkTest.csproj
  37. 2 20
      Demo/Examples/Viewer/App.xaml.cs
  38. 1 1
      Demo/Examples/Viewer/Viewer.csproj
  39. 0 4
      Demo/Examples/license_key_win.xml
  40. 8 0
      Demo/Examples/license_key_windows.xml

BIN
Demo/Examples/AnnotationViewControl.zip


+ 2 - 2
Demo/Examples/AnnotationViewControl/AnnotationViewControl.csproj

@@ -102,8 +102,8 @@
     </None>
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\license_key_win.xml">
-      <Link>license_key_win.xml</Link>
+    <None Include="..\license_key_windows.xml">
+      <Link>license_key_windows.xml</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 1 - 1
Demo/Examples/AnnotationViewControl/App.xaml.cs

@@ -12,7 +12,7 @@ namespace AnnotationViewControl
         public SDKLicenseHelper()
         {
 
-            string sdkLicensePath = "license_key_win.xml";
+            string sdkLicensePath = "license_key_windows.xml";
             Assembly assembly = Assembly.GetExecutingAssembly();
             XmlDocument xmlDocument = new XmlDocument();
             xmlDocument.Load(sdkLicensePath);

+ 27 - 0
Demo/Examples/Compdfkit_Tools/Common/Helper/CommonHelper.cs

@@ -13,11 +13,38 @@ using System.Windows;
 using System.Windows.Controls;
 using System.Windows.Media;
 using System.Windows.Media.Imaging;
+using System.Xml;
 using Point = System.Windows.Point;
 using Size = System.Windows.Size;
 
 namespace Compdfkit_Tools.Helper
 {
+    public class SDKLicenseHelper
+    {
+        public string key = string.Empty;
+        public string secret = string.Empty;
+        public SDKLicenseHelper()
+        {
+            string sdkLicensePath = "license_key_windows.xml";
+            XmlDocument xmlDocument = new XmlDocument();
+            xmlDocument.Load(sdkLicensePath);
+
+            XmlNode keyNode = xmlDocument.SelectSingleNode("/license/key");
+            XmlNode secretNode = xmlDocument.SelectSingleNode("/license/secret");
+
+            if (keyNode != null && secretNode != null)
+            {
+                key = keyNode.InnerText;
+                secret = secretNode.InnerText;
+
+            }
+            else
+            {
+                Console.WriteLine("Key or secret element not found in the XML.");
+            }
+        }
+    }
+
     public static class CommonHelper
     {
         /// <summary>

+ 1 - 1
Demo/Examples/ContentEditorViewControl/App.xaml.cs

@@ -18,7 +18,7 @@ namespace ContentEditorViewControl
         public SDKLicenseHelper()
         {
 
-            string sdkLicensePath = "license_key_win.xml";
+            string sdkLicensePath = "license_key_windows.xml";
             Assembly assembly = Assembly.GetExecutingAssembly();
             XmlDocument xmlDocument = new XmlDocument();
             xmlDocument.Load(sdkLicensePath);

+ 2 - 2
Demo/Examples/ContentEditorViewControl/ContentEditorViewControl.csproj

@@ -115,8 +115,8 @@
     </ProjectReference>
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\license_key_win.xml">
-      <Link>license_key_win.xml</Link>
+    <None Include="..\license_key_windows.xml">
+      <Link>license_key_windows.xml</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 1 - 1
Demo/Examples/DocsEditControl/App.xaml.cs

@@ -18,7 +18,7 @@ namespace DocsEditControl
         public SDKLicenseHelper()
         {
 
-            string sdkLicensePath = "license_key_win.xml";
+            string sdkLicensePath = "license_key_windows.xml";
             Assembly assembly = Assembly.GetExecutingAssembly();
             XmlDocument xmlDocument = new XmlDocument();
             xmlDocument.Load(sdkLicensePath);

+ 2 - 2
Demo/Examples/DocsEditControl/DocsEditControl.csproj

@@ -114,8 +114,8 @@
     </ProjectReference>
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\license_key_win.xml">
-      <Link>license_key_win.xml</Link>
+    <None Include="..\license_key_windows.xml">
+      <Link>license_key_windows.xml</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 1 - 1
Demo/Examples/Examlpes.sln

@@ -5,7 +5,7 @@ VisualStudioVersion = 17.5.33516.290
 MinimumVisualStudioVersion = 10.0.40219.1
 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "License", "License", "{43ED4BF9-5941-4F32-A9DC-016E94A0E74E}"
 	ProjectSection(SolutionItems) = preProject
-		license_key_win.xml = license_key_win.xml
+		license_key_windows.xml = license_key_windows.xml
 	EndProjectSection
 EndProject
 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Viewer", "Viewer\Viewer.csproj", "{A25DD47F-1FDF-48A1-8D0E-8CFF2C066A74}"

+ 1 - 1
Demo/Examples/FormViewControl/App.xaml.cs

@@ -12,7 +12,7 @@ namespace FormViewControl
         public SDKLicenseHelper()
         {
 
-            string sdkLicensePath = "license_key_win.xml";
+            string sdkLicensePath = "license_key_windows.xml";
             Assembly assembly = Assembly.GetExecutingAssembly();
             XmlDocument xmlDocument = new XmlDocument();
             xmlDocument.Load(sdkLicensePath);

+ 2 - 2
Demo/Examples/FormViewControl/FormViewControl.csproj

@@ -94,8 +94,8 @@
       </ProjectReference>
     </ItemGroup>
     <ItemGroup>
-      <Content Include="..\license_key_win.xml">
-        <Link>license_key_win.xml</Link>
+      <Content Include="..\license_key_windows.xml">
+        <Link>license_key_windows.xml</Link>
         <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
       </Content>
       <Content Include="..\TestFile\PDF32000_2008.pdf">

+ 2 - 2
Demo/Examples/PDFATest/PDFATest.csproj

@@ -66,8 +66,8 @@
     <None Include="packages.config" />
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\license_key_win.xml">
-      <Link>license_key_win.xml</Link>
+    <None Include="..\license_key_windows.xml">
+      <Link>license_key_windows.xml</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 1 - 20
Demo/Examples/PDFViewer_new/App.xaml.cs

@@ -8,29 +8,10 @@ using System.Threading.Tasks;
 using System.Windows;
 using System.Xml;
 using ComPDFKit.NativeMethod;
+using Compdfkit_Tools.Helper;
 
 namespace PDFViewer_new
 {
-    public class SDKLicenseHelper
-    {
-        public string key = string.Empty;
-        public string secret = string.Empty;
-        public SDKLicenseHelper()
-        {
-            string sdkLicensePath = "license_key_win.xml";
-            Assembly assembly = Assembly.GetExecutingAssembly();
-            XmlDocument xmlDocument = new XmlDocument();
-            xmlDocument.Load(sdkLicensePath);
-            var node = xmlDocument.SelectSingleNode("License");
-            if (node != null)
-            {
-                key = node.Attributes["key"].Value;
-                secret = node.Attributes["secret"].Value;
-            }
-        }
-
-    }
-    
     /// <summary>
     /// Interaction logic for App.xaml
     /// </summary>

+ 2 - 2
Demo/Examples/PDFViewer_new/PDFViewer_new.csproj

@@ -124,8 +124,8 @@
     </ProjectReference>
   </ItemGroup>
   <ItemGroup>
-    <Content Include="..\license_key_win.xml">
-      <Link>license_key_win.xml</Link>
+    <Content Include="..\license_key_windows.xml">
+      <Link>license_key_windows.xml</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </Content>
     <Content Include="..\TestFile\PDF32000_2008.pdf">

+ 2 - 2
Demo/Examples/Samples/AnnotationImportExportTest/AnnotationImportExportTest.csproj

@@ -74,8 +74,8 @@
     <None Include="packages.config" />
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\..\license_key_win.xml">
-      <Link>license_key_win.xml</Link>
+    <None Include="..\..\license_key_windows.xml">
+      <Link>license_key_windows.xml</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 2 - 2
Demo/Examples/Samples/AnnotationTest/AnnotationTest.csproj

@@ -75,8 +75,8 @@
     <None Include="packages.config" />
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\..\license_key_win.xml">
-      <Link>license_key_win.xml</Link>
+    <None Include="..\..\license_key_windows.xml">
+      <Link>license_key_windows.xml</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 2 - 2
Demo/Examples/Samples/BackgroundTest/BackgroundTest.csproj

@@ -79,8 +79,8 @@
     <None Include="packages.config" />
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\..\license_key_win.xml">
-      <Link>license_key_win.xml</Link>
+    <None Include="..\..\license_key_windows.xml">
+      <Link>license_key_windows.xml</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 1 - 1
Demo/Examples/Samples/BatesTest/BatesTest.csproj

@@ -63,7 +63,7 @@
     <None Include="packages.config" />
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\..\license_key_win.xml">
+    <None Include="..\..\license_key_windows.xml">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 1 - 1
Demo/Examples/Samples/BatesTest/LicenseKey.cs

@@ -8,7 +8,7 @@ public class SDKLicenseHelper
 
     public SDKLicenseHelper()
     {
-        string sdkLicensePath = "license_key_win.xml";
+        string sdkLicensePath = "license_key_windows.xml";
         XmlDocument xmlDocument = new XmlDocument();
         xmlDocument.Load(sdkLicensePath);
         var node = xmlDocument.SelectSingleNode("License");

+ 2 - 2
Demo/Examples/Samples/BookmarkTest/BookmarkTest.csproj

@@ -70,8 +70,8 @@
     <None Include="packages.config" />
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\..\license_key_win.xml">
-      <Link>license_key_win.xml</Link>
+    <None Include="..\..\license_key_windows.xml">
+      <Link>license_key_windows.xml</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 2 - 2
Demo/Examples/Samples/DocumentCompare/DocumentCompareTest.csproj

@@ -70,8 +70,8 @@
     <None Include="packages.config" />
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\..\license_key_win.xml">
-      <Link>license_key_win.xml</Link>
+    <None Include="..\..\license_key_windows.xml">
+      <Link>license_key_windows.xml</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 2 - 2
Demo/Examples/Samples/DocumentInfoTest/DocumentInfoTest.csproj

@@ -66,8 +66,8 @@
     <None Include="packages.config" />
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\..\license_key_win.xml">
-      <Link>license_key_win.xml</Link>
+    <None Include="..\..\license_key_windows.xml">
+      <Link>license_key_windows.xml</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 2 - 2
Demo/Examples/Samples/EncryptTest/EncryptTest.csproj

@@ -70,8 +70,8 @@
     <None Include="packages.config" />
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\..\license_key_win.xml">
-      <Link>license_key_win.xml</Link>
+    <None Include="..\..\license_key_windows.xml">
+      <Link>license_key_windows.xml</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 2 - 2
Demo/Examples/Samples/FlattenTest/FlattenTest.csproj

@@ -66,8 +66,8 @@
     <None Include="packages.config" />
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\..\license_key_win.xml">
-      <Link>license_key_win.xml</Link>
+    <None Include="..\..\license_key_windows.xml">
+      <Link>license_key_windows.xml</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 1 - 1
Demo/Examples/Samples/HeaderFooterTest/HeaderFooterTest.csproj

@@ -63,7 +63,7 @@
     <None Include="packages.config" />
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\..\license_key_win.xml">
+    <None Include="..\..\license_key_windows.xml">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 2 - 2
Demo/Examples/Samples/ImageExtractTest/ImageExtractTest.csproj

@@ -69,8 +69,8 @@
     <None Include="packages.config" />
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\..\license_key_win.xml">
-      <Link>license_key_win.xml</Link>
+    <None Include="..\..\license_key_windows.xml">
+      <Link>license_key_windows.xml</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 2 - 2
Demo/Examples/Samples/InteractiveFormsTest/InteractiveFormsTest.csproj

@@ -67,8 +67,8 @@
     <None Include="packages.config" />
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\..\license_key_win.xml">
-      <Link>license_key_win.xml</Link>
+    <None Include="..\..\license_key_windows.xml">
+      <Link>license_key_windows.xml</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 1 - 1
Demo/Examples/Samples/LicenseKey.cs

@@ -8,7 +8,7 @@ public class SDKLicenseHelper
 
     public SDKLicenseHelper()
     {
-        string sdkLicensePath = "license_key_win.xml";
+        string sdkLicensePath = "license_key_windows.xml";
         XmlDocument xmlDocument = new XmlDocument();
         xmlDocument.Load(sdkLicensePath);
         var node = xmlDocument.SelectSingleNode("License");

+ 2 - 2
Demo/Examples/Samples/OutlineTest/OutlineTest.csproj

@@ -66,8 +66,8 @@
     <None Include="packages.config" />
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\..\license_key_win.xml">
-      <Link>license_key_win.xml</Link>
+    <None Include="..\..\license_key_windows.xml">
+      <Link>license_key_windows.xml</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 2 - 2
Demo/Examples/Samples/PDFATest/PDFATest.csproj

@@ -66,8 +66,8 @@
     <None Include="packages.config" />
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\..\license_key_win.xml">
-      <Link>license_key_win.xml</Link>
+    <None Include="..\..\license_key_windows.xml">
+      <Link>license_key_windows.xml</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 2 - 2
Demo/Examples/Samples/PDFPageTest/PDFPageTest.csproj

@@ -70,8 +70,8 @@
     <None Include="packages.config" />
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\..\license_key_win.xml">
-      <Link>license_key_win.xml</Link>
+    <None Include="..\..\license_key_windows.xml">
+      <Link>license_key_windows.xml</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 1 - 1
Demo/Examples/Samples/PDFRedactTest/PDFRedactTest.csproj

@@ -65,7 +65,7 @@
     <None Include="packages.config" />
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\..\license_key_win.xml">
+    <None Include="..\..\license_key_windows.xml">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 2 - 2
Demo/Examples/Samples/PDFToImage/PDFToImageTest.csproj

@@ -68,8 +68,8 @@
     <None Include="packages.config" />
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\..\license_key_win.xml">
-      <Link>license_key_win.xml</Link>
+    <None Include="..\..\license_key_windows.xml">
+      <Link>license_key_windows.xml</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 2 - 2
Demo/Examples/Samples/TextExtractTest/TextExtractTest.csproj

@@ -66,8 +66,8 @@
     <None Include="packages.config" />
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\..\license_key_win.xml">
-      <Link>license_key_win.xml</Link>
+    <None Include="..\..\license_key_windows.xml">
+      <Link>license_key_windows.xml</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 2 - 2
Demo/Examples/Samples/TextSearchTest/TextSearchTest.csproj

@@ -67,8 +67,8 @@
     <None Include="packages.config" />
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\..\license_key_win.xml">
-      <Link>license_key_win.xml</Link>
+    <None Include="..\..\license_key_windows.xml">
+      <Link>license_key_windows.xml</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 2 - 2
Demo/Examples/Samples/WatermarkTest/WatermarkTest.csproj

@@ -71,8 +71,8 @@
     <None Include="packages.config" />
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\..\license_key_win.xml">
-      <Link>license_key_win.xml</Link>
+    <None Include="..\..\license_key_windows.xml">
+      <Link>license_key_windows.xml</Link>
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>

+ 2 - 20
Demo/Examples/Viewer/App.xaml.cs

@@ -1,4 +1,5 @@
 using ComPDFKit.NativeMethod;
+using Compdfkit_Tools.Helper;
 using System.IO;
 using System.Reflection;
 using System.Windows;
@@ -6,26 +7,7 @@ using System.Xml;
 using static ComPDFKit.NativeMethod.CPDFSDKVerifier;
 
 namespace Viewer
-{
-    public class SDKLicenseHelper
-    {
-        public string key = string.Empty;
-        public string secret = string.Empty;
-        public SDKLicenseHelper()
-        {
-            string sdkLicensePath = "license_key_win.xml";
-            XmlDocument xmlDocument = new XmlDocument();
-            xmlDocument.Load(sdkLicensePath);
-            var node = xmlDocument.SelectSingleNode("License");
-            if (node != null)
-            {
-                key = node.Attributes["key"].Value;
-                secret = node.Attributes["secret"].Value;
-            }
-        }
-
-    }
-
+{ 
     /// <summary>
     /// Interaction logic for App.xaml
     /// </summary>

+ 1 - 1
Demo/Examples/Viewer/Viewer.csproj

@@ -116,7 +116,7 @@
     <None Include="App.config" />
   </ItemGroup>
   <ItemGroup>
-    <None Include="..\license_key_win.xml">
+    <None Include="..\license_key_windows.xml">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
     <Resource Include="ComPDFKit_Logo.ico" />

Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 4
Demo/Examples/license_key_win.xml


Diferenças do arquivo suprimidas por serem muito extensas
+ 8 - 0
Demo/Examples/license_key_windows.xml