Skip to content

Commit

Permalink
Fix ILanguageService (#1445)
Browse files Browse the repository at this point in the history
  • Loading branch information
josefpihrt committed Apr 16, 2024
1 parent ff22777 commit db09e15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Workspaces.Core/Host/Mef/MefLanguageServices.cs
Expand Up @@ -53,7 +53,7 @@ internal bool TryGetService(Type serviceType, out Lazy<ILanguageService, Languag
serviceType,
type =>
{
string fullName = type.FullName;
string fullName = type.AssemblyQualifiedName;
return _services.SingleOrDefault(lz => lz.Metadata.ServiceType == fullName, shouldThrow: false);
});
Expand Down

0 comments on commit db09e15

Please sign in to comment.