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:
authorLarry Ewing <lewing@microsoft.com>2022-06-16 04:18:30 +0300
committerGitHub <noreply@github.com>2022-06-16 04:18:30 +0300
commit9201e08bd1c55fec047022b27747f2677a66e1a5 (patch)
tree939115107e38a5d89b43868fa525fd8d3383e945
parent531a195fee783028e3586ad21889a11f0cf8e99c (diff)
Update release-notes/7.0/known-issues.md
-rw-r--r--release-notes/7.0/known-issues.md8
1 files changed, 0 insertions, 8 deletions
diff --git a/release-notes/7.0/known-issues.md b/release-notes/7.0/known-issues.md
index 0d47589e..987f8646 100644
--- a/release-notes/7.0/known-issues.md
+++ b/release-notes/7.0/known-issues.md
@@ -12,14 +12,6 @@ Workaround:
Copy the following into any net7.0 blazor wasm csproj:
`
- <ItemGroup>
- <PackageReference Include="Serilog.Extensions.Logging.File" Version="2.0.0" ExcludeAssets="all" GeneratePathProperty="true"/>
- </ItemGroup>
- <Target Name="_CopySerilogDeps" AfterTargets="Build">
- <Copy SourceFiles="$(PkgSerilog_Extensions_Logging_File)\lib\netstandard2.0\Serilog.Extensions.Logging.File.dll"
- DestinationFolder="$(PkgMicrosoft_AspNetCore_Components_WebAssembly_DevServer)\tools\BlazorDebugProxy"
- SkipUnchangedFiles="true"/>
- </Target>
`
That will copy the missing dependency into the DevServer package and enable Wasm debugging in .NET 7.0 Preview 5 after a single build. This workaround only needs to be run once per package root to repair the DevServer package but should be harmless to leave in as long as the project doesn’t have a different Serilog version requirement.