.NET CA1416:驗證平臺兼容性
默認情況下,這個錯誤只對面向 .NET 5 或更高版本的項目
處理方法:添加屬性說明
處理方法:添加屬性說明
[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.
posted on 2023-05-24 10:25 Benjamin 閱讀(174) 評論(0) 編輯 收藏 引用 所屬分類: 雜談