Fix xml docs loading from assembly logix in XmlDocs.cs (#3415)

This commit is contained in:
Александр Земляк 2026-04-06 19:38:05 +03:00 committed by GitHub
parent 0ffe331599
commit 1a787952e9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 4 deletions

View file

@ -1088,9 +1088,6 @@ namespace CodeCompletion
if (description != null)
{
description = description.Replace("!#", "");
// Пусть здесь делаем все замены
// Для рекурсивных <<>> нужно писать собственный парсер
//description = System.Text.RegularExpressions.Regex.Replace(description, @"NewSet<\s*(.*)\s*>", "set of $1");
}
return description;
}

View file

@ -17,7 +17,7 @@ namespace CodeCompletionTools
public static string Load(Assembly a, string path)
{
if (!ht.ContainsKey(a)) return null;
if (ht.ContainsKey(a)) return null;
string dir;
if (string.IsNullOrEmpty(a.Location))
dir = path;