TuesPechkin: IIS-hosted application

2.4k Views Asked by At

I'm having trouble trying to setup the PDF to HTML converter from the TuesPechkin Nuget package. I have it set up like mentioned here:

This is my code in my aspx.cs page:

private static IConverter converter = 
    new ThreadSafeConverter(
        new RemotingToolset<PdfToolset>(
            new Win64EmbeddedDeployment(
                new TempFolderDeployment())));

Everything goes fine except the Win64EmbeddedDeployment part says:

The type or namespace name 'Win64EmbeddedDeployment' could not be found (are you missing a using directive or an assembly reference?)

Anyone know how to do resolve this and if I'm going on the right track here?

2

There are 2 best solutions below

1
On BEST ANSWER

You need install one more nuget for Win64EmbeddedDeployment or Win32EmbeddedDeployment.

0
On

Need to install nuget: TuesPechkin.Wkhtmltox.Win64.