static public Mod FromModName(string springPath, string modName) { var exporter = new ModToXml.ModExporter(springPath); exporter.DumpModFromName(TempXmlFile, modName); return new Mod(TempXmlFile); }
static public Mod FromModName(string springPath, string modName) { var exporter = new ModToXml.ModExporter(springPath); exporter.DumpModFromName(TempXmlFile, modName); return(new Mod(TempXmlFile)); }
static public Mod FromPath(string springPath, string archivePath) { var exporter = new ModToXml.ModExporter(springPath); exporter.DumpModFromPath(TempXmlFile, archivePath); return(new Mod(TempXmlFile)); }
public Mod GetLatestCA(string springPath) { var exporter = new ModToXml.ModExporter(springPath); exporter.DumpLatestCA(TempXmlFile); return(new Mod(TempXmlFile)); }
static public Mod FromPath(string springPath, string archivePath) { var exporter = new ModToXml.ModExporter(springPath); exporter.DumpModFromPath(TempXmlFile, archivePath); return new Mod(TempXmlFile); }
public Mod GetLatestCA(string springPath) { var exporter = new ModToXml.ModExporter(springPath); exporter.DumpLatestCA(TempXmlFile); return new Mod(TempXmlFile); }