private Result RunTypes(RunContext runContext, Convention convention, params Type[] types) { return(Run(runContext, new[] { convention }, types)); }
public AssemblyResult RunType(Assembly assembly, Convention convention, Type type) { var runContext = new RunContext(assembly, options); return(RunTypes(runContext, convention, type)); }