28 lines
741 B
C#
28 lines
741 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using UnityEngine;
|
|
|
|
namespace Obfuz.Settings
|
|
{
|
|
[Serializable]
|
|
public class SymbolObfusSettings
|
|
{
|
|
public bool debug;
|
|
|
|
[Tooltip("prefix for obfuscated name to avoid name confliction with original name")]
|
|
public string obfuscatedNamePrefix = "$";
|
|
|
|
[Tooltip("obfuscate same namespace to one name")]
|
|
public bool useConsistentNamespaceObfuscation = true;
|
|
|
|
[Tooltip("path of mapping.xml")]
|
|
public string mappingFile = "Assets/Obfuz/SymbolObfus/mapping.xml";
|
|
|
|
[Tooltip("obfuscation rule files for assemblies")]
|
|
public string[] ruleFiles;
|
|
}
|
|
}
|