Skip to content

Commit

Permalink
Updaded readme
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexKasaku committed Jan 13, 2020
1 parent 1a4dd89 commit 1f9f970
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,19 @@ There's also a new button added to the Rich Text Editor that allows the pipeline

You can grab the source and build it yourself to include in your project. But if you'd rather just work with a package, you can grab the latest release from the `dist` folder. The full-package will install the module as well as a Clean HTML button into the default Rich Text Editor profile.

The current release has been tested with Sitecore 6.6, 7.2 and 8.2, and is expected to work with versions in-between. Please raise an issue if you come across any problems.
The current release has been tested with Sitecore 6.6, 7.2, 8.2 and 9.3, and is expected to work with versions in-between. Please raise an issue if you come across any problems.

### Sitecore 6.x

Sitecore 6.6 uses a different version of HtmlAgilityPack, version `1.4.0.0`. If you are building from source, you will need to account for this as the solution currently doesn't. However if you just want the build, the `dist` folder already contains a working build for Sitecore 6.6.

### Sidecore 9.x

Sitecore 9.0 - 9.3 also use a different version of HtmlAgilityPack, version `1.4.9.5`. You can use the regular build of Sitecore.Sweep with this version, but should include this assembly binding redirect in your `web.config`:

```xml
<dependentAssembly>
<assemblyIdentity name="HtmlAgilityPack" publicKeyToken="bd319b19eaf3b43a" culture="neutral" />
<bindingRedirect oldVersion="1.4.0.0-1.4.9.5" newVersion="1.4.9.5" />
</dependentAssembly>
```

0 comments on commit 1f9f970

Please sign in to comment.