Merge pull request #3547 from grubioe/patch-1

Updating Known Issues, adding WPF known issue for gRPC
This commit is contained in:
Lee Coward 2019-10-15 12:37:01 -07:00 committed by GitHub
commit a19f4082da
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.