默認(rèn)情況下,這個(gè)錯(cuò)誤只對(duì)面向 .NET 5 或更高版本的項(xiàng)目
處理方法:添加屬性說(shuō)明
[SupportedOSPlatform("linux")] // An API supported only on Linux.
// API is supported on Windows, iOS from version 14.0, and MacCatalyst from version 14.0.
[SupportedOSPlatform("windows")]
[SupportedOSPlatform("ios14.0")] // MacCatalyst is a superset of iOS, therefore it's also supported
[UnsupportedOSPlatform("windows")] //不支持
[UnsupportedOSPlatform("android")] //An API not supported on Android but supported on all other platforms.