Home > Software engineering >  How to determine version of iTextSharp?
How to determine version of iTextSharp?

Time:04-04

I'm using VS2022, and I received an old project, where iTextSharp was used, but I can't determine a specific version of the mentioned.

I've tried - Tools -> Nuget Package Manager -> Manage Nuget Packages for Solution...

But was unable to find iTextSharp.

Thanks in advance.

CodePudding user response:

It sounds like the assembly has been included directly in the source control, as was common place before nuget. Take a look in your project's references and you should be able to locate the dll. Checking the file's properties in VS should show you the assembly's details in the properties panel and should also show you which version is being used, if not the path or filename may give you a clue as to the version being used.

  • Related