Updating Known Issues, adding WPF known issue

Added a known issue for WPF.
This commit is contained in:
Gustavo Rubio 2019-10-03 21:15:05 -07:00 committed by GitHub
parent d49dc0b9cf
commit 06edf2c691
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -68,3 +68,18 @@ This document lists known issues for **.NET Core 3.0 GA and beyond releases** wh
<PackageReference Include="Grpc.AspNetCore" Version="2.23.2" />
</ItemGroup>
```
## 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, `<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:** <!-- callstack for crashes / exceptions -->
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.