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
@@ -394,3 +394,53 @@ A Blazor WebAssembly app can be initialized with the `loadBootResource` function
394
394
External sources must return the required CORS headers for browsers to allow the cross-origin resource loading. CDNs usually provide the required headers by default.
395
395
396
396
You only need to specify types for custom behaviors. Types not specified to `loadBootResource` are loaded by the framework per their default loading behaviors.
397
+
398
+
## Change the filename extension of DLL files
399
+
400
+
In case you have a need to change the filename extensions of the app's published *.dll* files, follow the guidance in this section.
401
+
402
+
After publishing the app, use a shell script or DevOps build pipeline to rename *.dll* files to use a different file extension. Target the *.dll* files in the *wwwroot* directory of the app's published output (for example, *{CONTENT ROOT}/bin/Release/netstandard2.1/publish/wwwroot*).
403
+
404
+
In the following examples, *.dll* files are renamed to use the *.bin* file extension.
405
+
406
+
On Windows:
407
+
408
+
```powershell
409
+
dir .\_framework\_bin | rename-item -NewName { $_.name -replace ".dll\b",".bin" }
0 commit comments