Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThays Grazia <thaystg@gmail.com>2022-07-07 21:18:57 +0300
committerGitHub <noreply@github.com>2022-07-07 21:18:57 +0300
commit17408b9765c043c680bd54f958742f3ef0601f92 (patch)
tree9f528f11c1498e9180925e39dbbe394453732c35
parent0a4f0514aa2e1607c9d48d2f281b155d0fa0c2da (diff)
Apply suggestions from code review
Co-authored-by: Tanay Parikh <TanayParikh@users.noreply.github.com>
-rw-r--r--release-notes/7.0/known-issues.md12
1 files changed, 7 insertions, 5 deletions
diff --git a/release-notes/7.0/known-issues.md b/release-notes/7.0/known-issues.md
index 03ec516a..b38fd580 100644
--- a/release-notes/7.0/known-issues.md
+++ b/release-notes/7.0/known-issues.md
@@ -6,10 +6,11 @@ You may encounter the following known issues, which may include workarounds, mit
### Unable to debug a Blazor WebAssembly App
-It’s not possible to debug a Blazor app using .net7 preview 5 https://github.com/dotnet/runtime/pull/70383
+It’s not possible to debug a Blazor WebAssembly app using .NET 7 Preview 5 https://github.com/dotnet/runtime/pull/70383
-#### Workaround for a hosted app:
-Copy the following into the server net7.0 blazor wasm csproj:
+#### Workaround for a Blazor WebAssembly Hosted App:
+
+Copy the following into the server project (`.csproj`) of a `.NET 7 Preview 5` Blazor WebAssembly Hosted App:
```xml
<ItemGroup>
@@ -22,8 +23,9 @@ Copy the following into the server net7.0 blazor wasm csproj:
</Target>
```
-#### Workaround for a standalone app:
-Copy the following into any net7.0 blazor wasm csproj:
+#### Workaround for a Blazor WebAssembly Standalone App:
+
+Copy the following into a `.NET 7 Preview 5` Blazor WebAssembly project (`.csproj`):
```xml
<ItemGroup>