Thank you @Remco.
I have re-checked that without Xamarin target, NCrunch understands Extras just fine.
This is enough for now, cause I can switch Off some frameworks in dev-mode (with NCrunch), and include everything back on CI (w/out NCrunch).
```
<Project Sdk="MSBuild.Sdk.Extras/1.6.61">
<PropertyGroup>
<TargetFrameworks Condition="'$(DevMode)' == 'true' ">netstandard2.0</TargetFrameworks>
<TargetFrameworks Condition="'$(DevMode)' != 'true' ">netstandard2.0;Xamarin.iOS10</TargetFrameworks>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'Xamarin.iOS10'">
</PropertyGroup>
</Project>
```