How to get a specific version of a library via NuGet?

0

I need to use a library with a specific version in an old project. I remember already having downloaded another library by the NuGet console specifying the version, but I do not remember and I do not even know if there is a default for this and if any package NuGet offers old versions.

In this case it would be iTextSharp 4.1.2.0

Is there a pattern? How would it look?

PM> Install-Package iTextSharp ???Versão???
    
asked by anonymous 02.09.2015 / 19:30

1 answer

2

Use the Version :

Install-Package iTextSharp -Version 4.1.2.0
    
02.09.2015 / 19:33