diff --git a/accepted/2020/linking-libraries.md b/accepted/2020/linking-libraries.md index fac77cee0..3cce001e3 100644 --- a/accepted/2020/linking-libraries.md +++ b/accepted/2020/linking-libraries.md @@ -13,7 +13,7 @@ the internet, for example Xamarin and Blazor applications. End users on a slow or limited network will be less likely to install and use applications that are too large. Additionally, there may be store or device limitations on how big an acceptable application can be, e.g. how large an of application can be installed -over a cellular network; or installed on watchOS. +over a cellular network. Trimming a framework-dependent application can also be advantageous since the application may depend on libraries and only use a small subset of the diff --git a/accepted/2020/net5/net5.md b/accepted/2020/net5/net5.md index edf0d263e..2b139420a 100644 --- a/accepted/2020/net5/net5.md +++ b/accepted/2020/net5/net5.md @@ -274,8 +274,6 @@ We'll have the following TFMs: | | (+everything else inherited from net5.0) | | | net5.0-tvos | xamarin.tvos | | | | (+everything else inherited from net5.0) | | -| net5.0-watchos | xamarin.watchos | | -| | (+everything else inherited from net5.0) | | | net5.0-windows | netcoreapp1..3.1 | WinForms + WPF | | | (+everything else inherited from net5.0) | | | Tizen, Unity... | Will follow the Xamarin model | | @@ -397,7 +395,6 @@ net5.0-android | Yes net5.0-ios | Yes net5.0-macos | Yes net5.0-tvos | Yes -net5.0-watchos | Yes net5.0-windows | No Please note that by being able to put the OS version into the TFM one can also diff --git a/accepted/2020/platform-checks/platform-checks.md b/accepted/2020/platform-checks/platform-checks.md index bb08d10b5..89ec26914 100644 --- a/accepted/2020/platform-checks/platform-checks.md +++ b/accepted/2020/platform-checks/platform-checks.md @@ -405,9 +405,6 @@ namespace System public static bool IsTvOS(); public static bool IsTvOSVersionAtLeast(int major, int minor = 0, int build = 0, int revision = 0); - public static bool IsWatchOS(); - public static bool IsWatchOSVersionAtLeast(int major, int minor = 0, int build = 0, int revision = 0); - public static bool IsWindows(); public static bool IsWindowsVersionAtLeast(int major, int minor = 0, int build = 0, int revision = 0); }