net461 isn't compatible with netstandard2.0. In the netfx build configurations, some projects target net461 and reference Microsoft.ML.Core, which only targets netstandard2.0. There are a few options:
Multitarget the projects that currently target netstandard2.0 to also target net461
Update the netfx build to use net46 instead of net461, and multitarget the netstandard projects to also target netstandard1.3
Update the netfx build to use net472 instead of net461
We used option 2 in Roslyn 1.x and 2.x, and switched to option 3 in Roslyn 3.
net461 isn't compatible with netstandard2.0. In the netfx build configurations, some projects target net461 and reference Microsoft.ML.Core, which only targets netstandard2.0. There are a few options:
We used option 2 in Roslyn 1.x and 2.x, and switched to option 3 in Roslyn 3.