Im am encountering the following build error:
The version of Microsoft.NET.Sdk used by this project is insufficient to support references to libraries targeting .NET Standard 1.5 or higher. Please install version 2.0 or higher of the .NET Core SDK.
Whenever I'm rebuilding a solution, this error will show. Has anybody a clue how to solve this? I'm sure I've installed Visual Studio 2017 (15.3.2) and .NET Core 2.0 properly.
I had the same issue. Adding
<DependsOnNETStandard>false</DependsOnNETStandard>
to yourcsproj
file works for now. Have a look at https://github.com/dotnet/sdk/issues/1527 for more information.