I was just trying to figure out whether the type System.Windows.Input.ICommand
is part of the new .NET Standard.
I did manage to compile a library using the type when the project target setting was set to .NETStandard1.0
(it also works when using a broad portable library API surface including .NET Core 1.0).
So, despite the odd namespace suggesting WPF involvement, and despite the namespace not being listed at this section of a CoreFX document it appears to be in it.
I wonder if there's also a more accessible reference one can browse to see what API is supported rather than just trying it.
Also, are the API surfaces fixed now, or can this change in the future? In other words, does the test I made give me an authoritative answer at all?