You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[wasm][debugger] Support create, debugging and running wasmbrowser template from VS (#75986)
* Support create, debugging and running wasmbrowser template from VS
* addings extra line in the end of the file
* remove extra spaces
* fix compilation error
* adding extra line in the end of the file
* Addressing @lewing comment.
Copy file name to clipboardExpand all lines: src/mono/wasm/build/WasmApp.targets
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -115,6 +115,11 @@
115
115
<WasmDebugLevelCondition="('$(WasmDebugLevel)' == '' or '$(WasmDebugLevel)' == '0') and ('$(DebuggerSupport)' == 'true' or '$(Configuration)' == 'Debug')">-1</WasmDebugLevel>
116
116
</PropertyGroup>
117
117
118
+
<ItemGroup>
119
+
<!-- Allow running/debugging from VS -->
120
+
<ProjectCapabilityInclude="DotNetCoreWeb"/>
121
+
</ItemGroup>
122
+
118
123
<PropertyGroupLabel="Identify app bundle directory to run from">
//we need to start another process, otherwise it will be running the BrowserDebugProxy in the same process that will be debugged, so pausing in a breakpoint
36
+
//on managed code will freeze because it will not be able to continue executing the BrowserDebugProxy to get the locals value
0 commit comments