I currently have a ASP.Net Core app, which implies that all my class libraries are .Net core class libraries.
In one of those libraries, I need to use iTextSharp, which does not support .Net Core.
I don't really care to execute this on linux, I just like the modularity of Asp.Net Core and all the template with the modern web development.
I found this: Unable to use iTextSharp with ASP.NET 5 Core which seems to indicate that we can reference the .Net 4.6 in a .Net core app.
But since VS2017, there is no more project.json, since it's directly included in the *.csproj.
So:
- Is it possible to reference a .Net 4.6(well a library from .Net full framework) in a .Net core library(if we are not gonna use it somewhere else than IIS?
- If yes, how?
- If no, do you have any idea what I can do?
SimpleTextExtractionStrategyclass in it?