Reputation: 11644
Can Automapper can be installed on Visual Studion 2008?
As per the site, automapper requires NuGet and NuGet works only with VS2010.
Upvotes: 0
Views: 343
Reputation: 7573
AutoMapper is just a set of libraries. It does not require any installation whatsoever. It is irrelevant which version of Visual Studio you are using. The only thing which could matter is which version of .NET Framework you are using.
Download the dlls here, unzip to a location on your drive and then add a reference to them in your project so you can start using them.
Happy Mapping!
Upvotes: 1
Reputation: 1328
On the page you linked to in your question it says:
"Alternatively, the major releases can be found as zip files from the GitHub downloads page."
Upvotes: 0