refactor(UXAssist): split Util into focused helpers with forwarding facade

This commit is contained in:
2026-06-23 08:04:58 +08:00
parent f4b163fae9
commit ed916ebe7f
4 changed files with 112 additions and 54 deletions
+9
View File
@@ -0,0 +1,9 @@
using System.IO;
using System.Reflection;
namespace UXAssist.Common.Utils;
public static class PathUtil
{
public static string PluginFolder(Assembly assembly = null) => Path.GetDirectoryName((assembly == null ? Assembly.GetCallingAssembly() : assembly).Location);
}