I have a C# test project that uses Microsoft fakes. An external library (abc.dll) that the project is referencing was recently updated to .net standard 2.0. After updating the abc.dll library reference to the latest version, the test project doesn't build any more and also doesn't generate the fake assembly for that library (dll). I see the following error in the generated .csproj file.
The external alias 'snh' was not specified in a /reference option
I looked at the generated .csproj file and the alias snh corresponds to System.Net.Http.
The test project is targeting .net 4.6.1 and I'm using latest VS 2017
Any idea how to solve this?