Code Monkey home page Code Monkey logo

Comments (9)

mganss avatar mganss commented on August 17, 2024 1

I think you'll need a binding redirect. AngleSharp.Css 0.17.0 references AngleSharp 0.17.0 while the latest HtmlSanitizer references AngleSharp 0.17.1. In .NET Framework 4.5.1 and later binding redirects should be created automatically.

See https://learn.microsoft.com/en-us/dotnet/framework/configure-apps/redirect-assembly-versions
and https://learn.microsoft.com/en-us/dotnet/framework/configure-apps/how-to-enable-and-disable-automatic-binding-redirection#enable-automatic-binding-redirects-in-web-apps

When you create a net48 desktop application, the following gets automatically added to the App.config when adding the HtmlSanitizer NuGet package:

<configuration>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="AngleSharp" publicKeyToken="e83494dcdc6d31ea" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-0.17.1.0" newVersion="0.17.1.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>

from htmlsanitizer.

qwerty-debug avatar qwerty-debug commented on August 17, 2024 1

Looks like App.config of the WCF service project does indeed have an (automatically added) binding redirect for AngleSharp, but the Web.config of the website hosting the WCF service does not.

Copying over the binding redirect from App.config to Web.config solves the issue.

Thanks for your time.

from htmlsanitizer.

mganss avatar mganss commented on August 17, 2024

Have you checked for #528 (comment)?

from htmlsanitizer.

qwerty-debug avatar qwerty-debug commented on August 17, 2024

Yes. As mentioned above I tried your suggestion from #528 , but it didn't work.

from htmlsanitizer.

mganss avatar mganss commented on August 17, 2024

I meant the binding redirect fix that worked for @Chmielinski.

from htmlsanitizer.

qwerty-debug avatar qwerty-debug commented on August 17, 2024

Not sure I follow...

@Chmielinski mentions the issue being caused by an out-of-date binding redirect for AngleSharp.
I assume he simply removed the binding redirect and cleared his build folders to fix the issue.

My project does not have any binding redirect, and until last week I had no dependency on HtmlSanitizer, AngleSharp or AngleSharp.Css.

from htmlsanitizer.

mganss avatar mganss commented on August 17, 2024

Perhaps you can try Fuslogvw to debug the issue.

from htmlsanitizer.

qwerty-debug avatar qwerty-debug commented on August 17, 2024

AngleSharp, Version=0.17.0.0, Culture=neutral, PublicKeyToken=e83494dcdc6d31ea.HTM.txt
AngleSharp, Version=0.17.1.0, Culture=neutral, PublicKeyToken=e83494dcdc6d31ea.HTM.txt

Looks like the root issue is in (the .NET framework build of) AngleSharp.CSS.

from htmlsanitizer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.