ReSharper intellisense for netcoreapp2.0 console application that references netstandard2.0 lib

Today I installed visual studio 15.3 and .net core 2.0 sdk. I created a console application (netcoreapp2.0) with a link to a project for the library (netstandard2.0). With ReSharper enabled, I am not getting intellisense for types in the library. Many bugs in VS, but the project builds / starts if executed from the command line (dotnet build). If I paused ReSharper, intellisense will start working. If the ReSharper function is enabled, if I installed the library for working with netstandard1.x intellisense.

Is there a workaround for this?

+5
source share
2 answers

ReSharper 2017.1 does not support the final versions of .net core 2 or .net standard 2 - it was released before they were. The best support is in the current (as of 16/08/2017) EAP build 2017.2 , but still there are some problems. We are improving support for the rest of the Early Access Program and will be ready for the release of ReSharper 2017.2, which is due very soon.

+1
source

Now, if you can, change the library project from netstandard2.0 to netcoreapp2.0.

<TargetFramework>netcoreapp2.0</TargetFramework>

It will work perfectly :)

0
source

Source: https://habr.com/ru/post/1270904/


All Articles