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

Asked

Viewed 159 times

0

I need to use a library with a specific version in an old project. I remember once downloading another library from the Nuget console specifying the version, but I do not remember and I do not know if there is a standard 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? What it would look like?

PM> Install-Package iTextSharp ???Versão???

1 answer

2


Use the parameter Version:

Install-Package iTextSharp -Version 4.1.2.0

Browser other questions tagged

You are not signed in. Login or sign up in order to post.