Reputation: 4766
In Visual studio 2017, Go to Implementation for .net standard library not work? Go to Implementation for .net core library work fine. but for .net standard throw
The symbol has no implementations
How can I solve this problem?
Upvotes: 7
Views: 4549
Reputation: 6499
Delete .vs folder usually work. this folder is same place as your solution file
Upvotes: 1
Reputation: 171
I found that changing from:
<TargetFramework>netstandard2.0</TargetFramework>
to:
<TargetFrameworks>netstandard2.0;netcoreapp3.1;net472</TargetFrameworks>
solved the problem.
Upvotes: 0
Reputation: 567
I am having the same issue after upgrading to .Net core 2.1. As work around I use
F12 then Ctrl+F12 from the Interface
Update: Seems like it is VS issue and there is no plan to be resolved soon
Upvotes: 8