Skip to content

Commit ee31515

Browse files
authored
Fix assembly name parsing in dotnet-pgo tool (#102634)
Fixes #102630
1 parent a8bc8fa commit ee31515

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/coreclr/tools/dotnet-pgo/TraceRuntimeDescToTypeSystemDesc.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ public ModuleDesc ResolveModuleID(long handle, bool throwIfNotFound = true)
291291
return null;
292292
}
293293

294-
minfo.Module = _context.ResolveAssembly(new AssemblyNameInfo(minfo.AssemblyName), throwIfNotFound);
294+
minfo.Module = _context.ResolveAssembly(AssemblyNameInfo.Parse(minfo.AssemblyName), throwIfNotFound);
295295
return minfo.Module;
296296
}
297297
else

0 commit comments

Comments
 (0)