vasiliyfomichev / Slack-for-Sitecore

Repository used for the Slack for Sitecore
GNU General Public License v3.0
3 stars 2 forks source link

Fix issue with different Newtonsoft.Json.dll versions #6

Open vlukash opened 8 years ago

vlukash commented 8 years ago

Slack module uses SlackConnector.dll that has Newtonsoft.Json.dll ver. 7.0.1 as a dependency. But Sitecore 8.1 already uses Newtonsoft.Json.dll ver. 6.0.8.

This version conflict should be resolved without modifying web.config

vlukash commented 8 years ago

We can use ILMerge to merge all libraries into single one before final publish to target bin folder.

I've added gulpjs build and a few tasks. To build all just run "Publish-All" target This will trigger the following actions:

vlukash commented 8 years ago

Please review changes in bugfix/issue-6 branch