I am trying to enable Linker to trim dlls but i think its not working.
According to Microsoft The linker is disabled when building in Debug configuration. Apps must build in Release configuration to enable the linker. We recommend building in Release when deploying your Blazor WebAssembly apps.
and we can enable and disable it using the following MSBuild property as well.
<PropertyGroup>
<BlazorWebAssemblyEnableLinking>false</BlazorWebAssemblyEnableLinking>
</PropertyGroup>
While publishing my configuration is set to release, but to check whether dlls are trimmed or not I publish my project by setting BlazorWebAssemblyEnableLinking value both as true and false but the dlls count and size remain same in _framework folder. which is 400 files and 73 mb in size
Any help would be appreciated. Thanks