My project is using AutoMapper, but I’ve used Nuget to install the package. However, in all my projects under my Mvc solution it is using the client profile .dll. Is there any way to get Nuget to use the correct dll when calling: Install-Package AutoMapper?
My project is using AutoMapper, but I’ve used Nuget to install the package. However,
Share
By looking at the source of the package (rename the package’s extension to .zip), it seems that it only contains dll for client and sl4.
So it’s perfectly valid to have a reference to the client version.
You can see all your NuGet packages by exploring the cache:
Tools -> Library Package Manager -> Package Manager Settings -> Browse
Finaly, you can find more information about framework version structure of a NuGet package from their website.