Skip to content

Commit 1f9f970

Browse files
committed
Updaded readme
1 parent 1a4dd89 commit 1f9f970

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

README.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,19 @@ There's also a new button added to the Rich Text Editor that allows the pipeline
4949

5050
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.
5151

52-
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.
52+
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.
53+
54+
### Sitecore 6.x
5355

5456
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.
57+
58+
### Sidecore 9.x
59+
60+
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`:
61+
62+
```xml
63+
<dependentAssembly>
64+
<assemblyIdentity name="HtmlAgilityPack" publicKeyToken="bd319b19eaf3b43a" culture="neutral" />
65+
<bindingRedirect oldVersion="1.4.0.0-1.4.9.5" newVersion="1.4.9.5" />
66+
</dependentAssembly>
67+
```

0 commit comments

Comments
 (0)