From 06edf2c691dcb4f847f4e9d1468b9038b1743ecf Mon Sep 17 00:00:00 2001 From: Gustavo Rubio <49078227+grubioe@users.noreply.github.com> Date: Thu, 3 Oct 2019 21:15:05 -0700 Subject: [PATCH] Updating Known Issues, adding WPF known issue Added a known issue for WPF. --- release-notes/3.0/3.0-known-issues.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/release-notes/3.0/3.0-known-issues.md b/release-notes/3.0/3.0-known-issues.md index 0967c97e..914ba8e2 100644 --- a/release-notes/3.0/3.0-known-issues.md +++ b/release-notes/3.0/3.0-known-issues.md @@ -68,3 +68,18 @@ This document lists known issues for **.NET Core 3.0 GA and beyond releases** wh ``` +## WPF.NET Core + +### 3.0.0 GA + +- ** Trying to use the AspNetCore gRPC fails to build ([WPF/810](https://github.com/dotnet/wpf/issues/810))** + + Trying to use a gRPC service in a WPF app, `true`, 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.