|
1 | 1 | --- |
2 | | -title: ASP.NET Core Blazor WebAssembly browser developer tools diagnostic profiling |
| 2 | +title: ASP.NET Core Blazor WebAssembly browser developer tools diagnostics |
3 | 3 | author: guardrex |
4 | | -description: Learn about browser developer tools diagnostic profiling in ASP.NET Core Blazor WebAssembly apps. |
| 4 | +description: Learn about browser developer tools diagnostics in ASP.NET Core Blazor WebAssembly apps. |
5 | 5 | monikerRange: '>= aspnetcore-10.0' |
6 | 6 | ms.author: riande |
7 | 7 | ms.custom: mvc |
8 | 8 | ms.date: 04/30/2025 |
9 | | -uid: blazor/performance/browser-developer-tools |
| 9 | +uid: blazor/performance/webassembly-browser-developer-tools |
10 | 10 | --- |
11 | | -# ASP.NET Core Blazor WebAssembly browser developer tools diagnostic profiling |
| 11 | +# ASP.NET Core Blazor WebAssembly browser developer tools diagnostics |
12 | 12 |
|
13 | 13 | <!-- UPDATE 10.0 - Activate ... |
14 | 14 |
|
15 | 15 | [!INCLUDE[](~/includes/not-latest-version.md)] |
16 | 16 |
|
17 | 17 | --> |
18 | 18 |
|
19 | | -This article describes browser developer tools diagnostic profiling tools in Blazor WebAssembly apps. |
| 19 | +This article describes browser developer tools diagnostic tools in Blazor WebAssembly apps. |
20 | 20 |
|
21 | 21 | ## Prerequisite |
22 | 22 |
|
@@ -56,17 +56,16 @@ In the app's project file (`.csproj`): |
56 | 56 | <WasmProfilers>browser;</WasmProfilers> |
57 | 57 | <WasmNativeStrip>false</WasmNativeStrip> |
58 | 58 | <WasmNativeDebugSymbols>true</WasmNativeDebugSymbols> |
59 | | - <WasmBuildNative>true</WasmBuildNative> |
60 | 59 | </PropertyGroup> |
61 | 60 | ``` |
62 | 61 |
|
63 | 62 | Alternatively, enable features when the app is built with the .NET CLI. The following options passed to the `dotnet build` command mirror the preceding MS Build property configuration: |
64 | 63 |
|
65 | 64 | ```dotnetcli |
66 | | -/p:WasmProfilers=browser /p:WasmNativeStrip=false /p:WasmNativeDebugSymbols=true /p:WasmBuildNative=true |
| 65 | +/p:WasmProfilers=browser /p:WasmNativeStrip=false /p:WasmNativeDebugSymbols=true |
67 | 66 | ``` |
68 | 67 |
|
69 | | -Setting WebAssembly profilers with `<WasmProfilers>browser;</WasmProfilers>` doesn't require AOT (`<RunAOTCompilation>`/`<RunAOTCompilationAfterBuild>` set to `false` or removed from the preceding properity group). |
| 68 | +Setting WebAssembly profilers with `<WasmProfilers>browser;</WasmProfilers>` doesn't require AOT (`<RunAOTCompilation>`/`<RunAOTCompilationAfterBuild>` set to `false` or removed from the preceding property group). |
70 | 69 |
|
71 | 70 | The browser developer tools profiler can be used with AOT (`<RunAOTCompilation>`/`<RunAOTCompilationAfterBuild>` set to `true`) and without WebAssembly profilers (`<WasmProfilers>browser;</WasmProfilers>` removed from the preceding property group). |
72 | 71 |
|
|
0 commit comments