This commit is contained in:
2026-07-09 21:33:33 +02:00
commit 84a2a365f3
2364 changed files with 950134 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
namespace Test.Util
{
public static class DebugLogUtil
{
public static string Hyperlink(string filePath) => $"<a href=\"{filePath}\">{filePath}</a>";
public static string Hyperlink(string filePath, string displayText) => $"<a href=\"{filePath}\">{displayText}</a>";
public static string Hyperlink(string filePath, int line) => Hyperlink($"{filePath}:{line}");
public static string Hyperlink(string filePath, int line, string displayText) => Hyperlink($"{filePath}:{line}", displayText);
}
}