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:
authorRahul Bhandari <rbhanda@microsoft.com>2022-06-16 01:55:49 +0300
committerGitHub <noreply@github.com>2022-06-16 01:55:49 +0300
commitba293a948ce415e4a45b6cd2e6925f4f6795284d (patch)
treeb654b9520bae54c8dc5e24538827db28f10c870d
parentedf5a568fea81b202d847f0b728958d48d93115b (diff)
Update known-issues.md
-rw-r--r--release-notes/7.0/known-issues.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/release-notes/7.0/known-issues.md b/release-notes/7.0/known-issues.md
index b60477e5..db904c63 100644
--- a/release-notes/7.0/known-issues.md
+++ b/release-notes/7.0/known-issues.md
@@ -4,6 +4,25 @@ You may encounter the following known issues, which may include workarounds, mit
## .NET Runtime
+### 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
+
+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 should resolve the missing dependency and get debugging working in .NET 7.0 Previw 5 after a single build. This only needs to be run once but should be harmless to leave if project doesn’t doesn’t have a different Serilog requirement.
+
### Assembly.GetType("System.Net.Http.HttpClientHandler", false, true) does not find some types but finds it when ignoreCase is set to false