删除一些错误的注释

before-split
walon 2025-05-31 08:30:32 +08:00
parent da044b72bc
commit 88c8cbab08
1 changed files with 0 additions and 7 deletions

View File

@ -19,7 +19,6 @@ namespace Obfuz4HybridCLR
var dir1 = new DirectoryInfo(path1);
var dir2 = new DirectoryInfo(path2);
// 比较完整路径(考虑符号链接)
return dir1.FullName.TrimEnd('\\') == dir2.FullName.TrimEnd('\\');
}
catch
@ -56,12 +55,6 @@ namespace Obfuz4HybridCLR
}
}
/// <summary>
/// output obfuscated assemblies to ObfuzSettings.Instance.GetObfuscatedAssemblyOutputPath(target)
/// </summary>
/// <param name="target"></param>
/// <param name="assemblySearchPaths"></param>
/// <exception cref="Exception"></exception>
public static void Obfuscate(BuildTarget target, List<string> assemblySearchPaths, string obfuscatedAssemblyOutputPath)
{
var obfuzSettings = ObfuzSettings.Instance;