I wrote code that checks the site for broken links using the IIS SEO toolkit API. The interface for the code is nice and simple, see below:
public interface ILinkChecker {
I can determine if there are broken links or not by checking the returned LinkCheckSummary object.
Now I would like to integrate this into our CI Cruise Control pipeline so that if LinkChecker detects broken links, the assembly is broken.
How to do it?
David source share