Skip to content

Commit

Permalink
docs: Fix linker disable invalid parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromelaban committed Jul 25, 2021
1 parent 228bf67 commit 13f563d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/articles/features/using-il-linker-webassembly.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ When parts of an application fail to work, you can:
As a troubleshooting step to determine if the linker is causing your code to break, you can also disable the linker completely by adding the following to your `csproj` file:
```xml
<PropertyGroup>
<WasmShellILLinkerEnabled>true</WasmShellILLinkerEnabled>
<WasmShellILLinkerEnabled>false</WasmShellILLinkerEnabled>
</PropertyGroup>
```
Note that disabling the linker is not recommended as it can force the compiler to generate very large WebAssembly modules AOT process, and go over the browser's size limits.
Expand Down

0 comments on commit 13f563d

Please sign in to comment.