Update 3.0.0-preview-known-issues.md

This commit is contained in:
Daniel Roth 2019-07-23 11:55:12 -07:00 committed by GitHub
parent 4e0c85269b
commit f36b58605d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,7 +41,13 @@ This document lists known issues for **.NET Core 3.0 Preview releases** which ma
To work around this issue remove the `<TargetFramework>netcoreapp3.0</TargetFramework>` line from the generated pubxml file under *Properties\Publish Profiles<profilename>.pubxml*.
- **`@bind-value` on its own results in a build error**
- **Cancellation is not sent to the server when using the `Grpc.Net.Client` gRPC client**
Canceling a gRPC client will cancel the call on the client, but will not send a cancellation notification to the server.
If your gRPC services rely on cancellation you should continue to use the `Grpc.Core` gRPC client until preview 7. This issue will be fixed in a future update.
- **[RESOLVED] `@bind-value` on its own results in a build error**
Writing `<input @bind-value="SOMEVALUE" />` in a component results in the following error:
@ -51,12 +57,6 @@ This document lists known issues for **.NET Core 3.0 Preview releases** which ma
To work around this issue add a `@bind-value:event="SOMEEVENT"` to the input element: `<input @bind-value="SOMEVALUE" @bind-value:event="SOMEEVENT" />`.
- **Cancellation is not sent to the server when using the `Grpc.Net.Client` gRPC client**
Canceling a gRPC client will cancel the call on the client, but will not send a cancellation notification to the server.
If your gRPC services rely on cancellation you should continue to use the `Grpc.Core` gRPC client until preview 7. This issue will be fixed in a future update.
- **[RESOLVED] `@attribute` directive does not work in _Imports.razor**
When adding the `@attribute` directive in *_Imports.razor* the project may fail to build with the following error: