I\'ve installed Visual Studio 2017. I have a class library in the new .NET Standard format, which is able to be used by both .NET Framework and .NET Core. But when I go to <
Try to change order of TargetFrameworks inside your .csproj.
From
netstandard2.0;net461
To
net461;netstandard2.0