Hello,
I am developing an application using GRPC in .NET Core 3 (Preview) and it is very difficult to develop the service implementations because I have no intellisense. The using statements are not resolving either. I have verified Grpc.Tools is generating the source code in /obj/debug and the application does compile fine, but the IDE is not including these generated files are part of its source files.
My csproj item group looks like this:
<ItemGroup>
<PackageReference Include="Grpc.AspNetCore.Server" Version="0.1.21-pre1" />
<PackageReference Include="Google.Protobuf" Version="3.8.0" />
<Protobuf Include="Grpc\Protos\*.proto" GrpcServices="Server" />
<Content Include="@(Protobuf)" LinkBase="" />
<PackageReference Include="Grpc.Tools" Version="1.22.0" PrivateAssets="All" />
</ItemGroup>
I have the same issue with all the demo applications I've downloaded, and even the GRPC Template. I am wondering if it's an issue with just the Mac version of VS 2019 or am I missing something?
Thanks in advance.
-Mike