Skip to content

Commit

Permalink
Fix assembly name parsing in dotnet-pgo tool (#102634)
Browse files Browse the repository at this point in the history
Fixes #102630
  • Loading branch information
jkotas committed May 24, 2024
1 parent a8bc8fa commit ee31515
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ public ModuleDesc ResolveModuleID(long handle, bool throwIfNotFound = true)
return null;
}

minfo.Module = _context.ResolveAssembly(new AssemblyNameInfo(minfo.AssemblyName), throwIfNotFound);
minfo.Module = _context.ResolveAssembly(AssemblyNameInfo.Parse(minfo.AssemblyName), throwIfNotFound);
return minfo.Module;
}
else
Expand Down

0 comments on commit ee31515

Please sign in to comment.