Skip to content

Commit

Permalink
Remove mentions about watchOS.
Browse files Browse the repository at this point in the history
watchOS isn't supported in .NET, so remove any mentions of it.
  • Loading branch information
rolfbjarne committed Oct 16, 2024
1 parent bba3216 commit 1c5cee3
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion accepted/2020/linking-libraries.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 0 additions & 3 deletions accepted/2020/net5/net5.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 | |
Expand Down Expand Up @@ -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
Expand Down
3 changes: 0 additions & 3 deletions accepted/2020/platform-checks/platform-checks.md
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 1c5cee3

Please sign in to comment.