<t>I'm using the .NET Standard 2.0 preview, on which my Class Libraries are based.<br/>
<br/>
After having trouble with a few NuGet packages, especially regarding archive extraction, I decided to migrate my .NET Core 2.0 Console projects back to the .NET Framework 4.6.1.<br/>
<br/>
The .NET Framework 4.6.1 is supposed to implement the .NET Standard 2.0 specification - according to different sources. Especially the dotnet/standard GitHub Repo.<br/>
<br/>
Unfortunately, the migration to the .NET Framework resulted in the following errrors throughout all of .NET Framework Console projects:<br/>
<br/>
<br/>
<br/>
Error CS0012 The type 'Object' is defined in an assembly that is not referenced. You must add a reference to assembly 'netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'.<br/>
<br/>
Where Object can be anything: Enum, Task, ... <br/>
<br/>
How would I reference .NET Standard 2.0 class libraries with .NET Framework (4.6.1) without getting such errors?</t>