Mapping Lists using Automapper

Tenho as aulas:

public class Person{ /* Props here */ }

public class PersonViewModel { /* Props here */ }

Em seguida, a lista:

List<Person> people = new List<Person>();
List<PersonViewModel> peopleVM = Mapper
                                .MapList<Person, PersonViewModel>(people); //Problem here.

Qual é a maneira correta de fazer isso

questionAnswers(5)

yourAnswerToTheQuestion