core

.NET Core 3.0 Known Issues

This document lists known issues for .NET Core 3.0 GA and beyond releases which may be encountered during usage.

.NET Core

.NET Core 3.0.2 SDK (3.0.102 SDK)

.NET Core 3.0.1 SDK (3.0.101 SDK)

.NET Core 3.0 SDK, all releases

Preview 9

Preview 5

ASP.NET Core

3.0.0 GA

WPF.NET Core

3.0.0 GA

Trying to use a gRPC service in a WPF app, <UseWPF>true</UseWPF>, results in a build error. Visual Studio and VSCode does not report the problem in intellisense but it appears when doing a dotnet build .sln.

Actual behavior: Results in a

error CS0246: The type or namespace name 'Greet' could not be found (are you missing a using directive or an assembly reference?)

As a workaround the client gRPC portion can be split into a separate project and it will build correctly.