Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove mentions about watchOS. #323

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we did add these APIs though


public static bool IsWindows();
public static bool IsWindowsVersionAtLeast(int major, int minor = 0, int build = 0, int revision = 0);
}
Expand Down
Loading