advapi
advapi

Reputation: 3907

Referencing a .NET Standard library in an ASP.Net application

I've got a strange issue referencing a net standard application (FW Full 4.5.2)

I got this error targets 'netstandard2.0'. It cannot be referenced by a project that targets '.NETFramework,Version=v4.5.2'., wasn't .NET standard supposed to allow references from Core and Framework projects as well?

Upvotes: 0

Views: 245

Answers (1)

Jeroen van Langen
Jeroen van Langen

Reputation: 22038

As stated here .NET implementation support. You need atleast .NET Framework 4.61 for referencing .NET Standard 2.0 assemblies.

Upvotes: 5

Related Questions