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’.

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’.

Solve:

Add <Reference Include=”netstandard” /> into .csproj file.

Leave a Comment