Gracenote是否兼容Windows 10和通用Windows平台(UWP/UAP)?
我们尝试从以下位置安装de Nuget包:
http://www.nuget.org/packages/ParkSquare.Gracenote/
当我们尝试安装它时,Visual Studio 2015在输出窗口中抛出:
===================================================
Restoring packages for 'MyApp.UWP'.
Restoring packages for C:\src\dev\MyApp.UWP\project.json...
Installing ParkSquare.Gracenote 1.3.0.
ParkSquare.Gracenote 1.3.0 is not compatible with UAP,Version=v10.0.
Some packages are not compatible with UAP,Version=v10.0.
ParkSquare.Gracenote 1.3.0 is not compatible with UAP,Version=v10.0 (win10-arm).
Some packages are not compatible with UAP,Version=v10.0 (win10-arm).
ParkSquare.Gracenote 1.3.0 is not compatible with UAP,Version=v10.0 (win10-arm-aot).
Some packages are not compatible with UAP,Version=v10.0 (win10-arm-aot).
ParkSquare.Gracenote 1.3.0 is not compatible with UAP,Version=v10.0 (win10-x86).
Some packages are not compatible with UAP,Version=v10.0 (win10-x86).
ParkSquare.Gracenote 1.3.0 is not compatible with UAP,Version=v10.0 (win10-x86-aot).
Some packages are not compatible with UAP,Version=v10.0 (win10-x86-aot).
ParkSquare.Gracenote 1.3.0 is not compatible with UAP,Version=v10.0 (win10-x64).
Some packages are not compatible with UAP,Version=v10.0 (win10-x64).
ParkSquare.Gracenote 1.3.0 is not compatible with UAP,Version=v10.0 (win10-x64-aot).
Some packages are not compatible with UAP,Version=v10.0 (win10-x64-aot).
Package restore failed for 'MyApp.UWP'.
Package restore failed. Rolling back package changes for 'MyApp.UWP'.
========== Finished ==========乍一看,我们认为Gracenote与Windows10不兼容。
我们正在尝试在Windows10上的应用程序中包含Gracenote;如果可能,我们应该使用哪些API?
发布于 2016-03-31 22:02:02
为了使软件包与UWP兼容,您需要a)联系软件包的开发人员以更新软件包,或者b)派生软件包并将其转换/构建为UWP。
您也可以自己实现Gracenote的REST API。
https://stackoverflow.com/questions/36335194
复制相似问题