Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/coreclr/crossgen-corelib.proj
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
</PropertyGroup>

<PropertyGroup Condition="'$(PublishReadyToRunContainerFormat)' == 'wasm'">
<CrossgenCoreLibOutputPath>$([MSBuild]::NormalizePath('$(BinDir)', '$(CoreLibAssemblyName).NotReadyYet.wasm'))</CrossgenCoreLibOutputPath>
<CrossgenCoreLibOutputPath>$([MSBuild]::NormalizePath('$(BinDir)', '$(CoreLibAssemblyName).wasm'))</CrossgenCoreLibOutputPath>
</PropertyGroup>

<PropertyGroup Condition="'$(UseComposite)' == 'true'">
Expand Down
4 changes: 4 additions & 0 deletions src/coreclr/hosts/corerun/corerun.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,10 @@ static bool HOST_CONTRACT_CALLTYPE external_assembly_probe(
std::string full_path = dir;
assert(full_path.back() == pal::dir_delim);
full_path.append(name);
#ifdef TARGET_BROWSER
if (BrowserHost_ExternalAssemblyProbe(full_path.c_str(), data_start, size))
return true;
#endif // TARGET_BROWSER
if (pal::try_map_file_readonly(full_path.c_str(), data_start, size))
return true;
}
Expand Down
Loading