obfuz/Editor/ObfusPass/ObfuscationPassContext.cs

26 lines
600 B
C#
Raw Normal View History

2025-05-03 23:23:16 +08:00
using dnlib.DotNet;
using Obfuz.Rename;
2025-05-04 19:24:14 +08:00
using Obfuz.Utils;
2025-04-05 19:02:50 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Obfuz
{
2025-05-04 19:24:14 +08:00
public class ObfuscationPassContext
2025-04-05 19:02:50 +08:00
{
public AssemblyCache assemblyCache;
2025-05-03 23:23:16 +08:00
public List<ModuleDef> toObfuscatedModules;
public List<ModuleDef> obfuscatedAndNotObfuscatedModules;
2025-04-05 21:47:28 +08:00
2025-05-03 21:43:50 +08:00
public List<string> toObfuscatedAssemblyNames;
public List<string> notObfuscatedAssemblyNamesReferencingObfuscated;
2025-04-16 23:03:41 +08:00
2025-05-03 21:43:50 +08:00
public string obfuscatedAssemblyOutputDir;
2025-04-05 19:02:50 +08:00
}
}