C# PDFNet Nuget库与UAP版本=v10.0不兼容

C# PDFNet Nuget库与UAP版本=v10.0不兼容,c#,win-universal-app,pdftron,C#,Win Universal App,Pdftron,我正在使用一个windows桌面应用程序,它使用PDFtron nuget库。我正在使用Visual Studio 2017,其.Net核心版本为2.0.5。 要编译该项目,我需要添加对指定PDFTron Nuget库的引用。但每当我尝试安装这个软件包时,我都会得到以下错误,即它不兼容。 由于该库在项目的80%中都被引用,我无法将其更改为其他内容 Restoring packages for 'ABCProject'. Restoring packages for C:\Users\xxxxxx

我正在使用一个windows桌面应用程序,它使用PDFtron nuget库。我正在使用Visual Studio 2017,其.Net核心版本为2.0.5。
要编译该项目,我需要添加对指定PDFTron Nuget库的引用。但每当我尝试安装这个软件包时,我都会得到以下错误,即它不兼容。 由于该库在项目的80%中都被引用,我无法将其更改为其他内容

Restoring packages for 'ABCProject'.
Restoring packages for C:\Users\xxxxxxxxx...
PDFNet 6.7.1.63077 is not compatible with UAP,Version=v10.0.
Some packages are not compatible with UAP,Version=v10.0.
PDFNet 6.7.1.63077 is not compatible with UAP,Version=v10.0 (win10-arm).
Some packages are not compatible with UAP,Version=v10.0 (win10-arm).
PDFNet 6.7.1.63077 is not compatible with UAP,Version=v10.0 (win10-arm-aot).
Some packages are not compatible with UAP,Version=v10.0 (win10-arm-aot).
PDFNet 6.7.1.63077 is not compatible with UAP,Version=v10.0 (win10-x64).
Some packages are not compatible with UAP,Version=v10.0 (win10-x64).
PDFNet 6.7.1.63077 is not compatible with UAP,Version=v10.0 (win10-x64-aot).
Some packages are not compatible with UAP,Version=v10.0 (win10-x64-aot).
PDFNet 6.7.1.63077 is not compatible with UAP,Version=v10.0 (win10-x86).
Some packages are not compatible with UAP,Version=v10.0 (win10-x86).
PDFNet 6.7.1.63077 is not compatible with UAP,Version=v10.0 (win10-x86-aot).
Some packages are not compatible with UAP,Version=v10.0 (win10-x86-aot).
Package restore failed for 'ABCProject'.
Package restore failed. Rolling back package changes for 'ABCProject'.
========== Finished ==========
我需要做什么才能使我的项目与UWP兼容。
(我已经阅读了有关将库迁移到.NET core的内容,但不确定在我的情况下它将如何工作。)

错误消息表示库与UWP项目不兼容。许多.NETFramework库不支持UWP项目。这是一个开源库,你可以下载它的源代码,自己编译一个兼容的包

例如,最新的UWP目标版本16299支持.Net标准2.0。因此,您可以编译一个.Net标准2.0库。有关更多详细信息,请参阅

如果它不是开源项目,您可以与它的所有者联系,让所有者发布UWP的新版本

另一个选项是您可以使用,但如果您使用代理的windows运行时组件,您只能侧面加载您的UWP应用程序,它将无法发布到windows应用商店。

PDFTron有一个单独的,当前只能通过填写评估表来使用

请填写此表,我们将为您提供UWP SDK链接。

谢谢您提供的信息。我已经填写了表单,正在等待SDK下载链接。太好了,如果您在获取SDK时遇到任何问题,请告诉我。