-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Description
-
UseMonoRuntime=trueis hardcoded in https://github.com/dotnet/sdk/blob/main/src/WasmSdk/Sdk/Sdk.props#L18. Workaround is to pass/p:UseMonoRuntime=falseon command-line -
KnownFrameworkReferenceforMicrosoft.NETCore.AppneedsRuntimePackRuntimeIdentifiers+=browser-wasm - Since we don't have a workload for CoreCLR yet, for WBT we need to way to override runtimepack version. Alternatively we can install Mono workload for CoreCLR WBT and override CoreCLR version there as well.
<ItemGroup>
<KnownFrameworkReference Update="Microsoft.NETCore.App">
<TargetingPackVersion>11.0.0-dev</TargetingPackVersion>
<DefaultRuntimeFrameworkVersion>11.0.0-dev</DefaultRuntimeFrameworkVersion>
<LatestRuntimeFrameworkVersion>11.0.0-dev</LatestRuntimeFrameworkVersion>
<RuntimePackRuntimeIdentifiers>browser-wasm;%(RuntimePackRuntimeIdentifiers)</RuntimePackRuntimeIdentifiers>
</KnownFrameworkReference>
</ItemGroup>Reactions are currently unavailable