fluter
fluter

Reputation: 13796

How to check the platforms a package is supported?

When I tried to install a package to a UWP project, it gave this error:

Install-Package : Package QuickFix.Net 1.7.0 is not compatible with uap10.0 (UAP,Version=v10.0). Package QuickFix.Net 1.7.0 supports: net (.NETFramework,Version=v0.0)
At line:1 char:1

But nothing on the package page indicts that it cannot be used with uwp, how can I check that what platforms a given package is supported?

Upvotes: 1

Views: 96

Answers (1)

Weiwei
Weiwei

Reputation: 3766

The content on package page provided by the package author. So if the author doesn't statement what platform the package doesn't support, there will not have such content on package page. But author often statement what platform the package supports.

For example, following statement query on QuickFix.NET package means this package is used for .NET platform development. So the UWP app which used UAP platform could not use this .NET platform package.

QuickFIX/n attempts to keep the same robustness and conformance of QuickFIX with a similar API while bringing native performance and idiomatic usage to .NET.

Upvotes: 1

Related Questions