Ejemplo n.º 1
0
 /// <summary>
 ///   Loads a single Dotfuscator map file into the mapping.
 /// </summary>
 /// <param name="db"></param>
 /// <param name="path">Path to the map.xml file.</param>
 /// <param name="version">Optional version to assign to the loaded obfuscations.</param>
 /// <param name="progress">Progress callback.</param>
 public static void LoadDotfuscator(this IMapping db, string path, Version version = null, Action <float> progress = null)
 {
     db.Insert(DotfuscatorParser.ReadMap(path, version, progress));
 }