From f36b58605ddd9fb6bb21e68cc0fd27c48c9fa47f Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Tue, 23 Jul 2019 11:55:12 -0700 Subject: [PATCH] Update 3.0.0-preview-known-issues.md --- .../3.0/preview/3.0.0-preview-known-issues.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/release-notes/3.0/preview/3.0.0-preview-known-issues.md b/release-notes/3.0/preview/3.0.0-preview-known-issues.md index 529d2d99..fbcc18b2 100644 --- a/release-notes/3.0/preview/3.0.0-preview-known-issues.md +++ b/release-notes/3.0/preview/3.0.0-preview-known-issues.md @@ -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 `netcoreapp3.0` line from the generated pubxml file under *Properties\Publish Profiles.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 `` 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: ``. -- **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: