This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Castle.MicroKernel; | |
using Castle.MicroKernel.Proxy; | |
using Castle.MicroKernel.Resolvers; | |
using Castle.MicroKernel.Resolvers.SpecializedResolvers; | |
using Castle.Windsor; | |
using Castle.Windsor.Installer; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Files: | |
// * CoverageDetails.cs - CoverageDetails has a bunch of simple attributes read from the coverage file, and some simple structs and enums | |
// * CoveredObject - base class of the next three classes | |
// * CoveredProject - a collection of modules | |
// * CoveredModule - a collection of functions | |
// * CoveredFunction - holds coverage information about the function | |
// * ReportHelper - some utility methods | |
// After running the binary coverage file through covxml with the --file argument | |
// construct the model using an XmlDocument object |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Collections.Specialized; | |
using System.Net; | |
using System.Text; | |
using System.Xml.Linq; | |
using System.Xml.XPath; | |
using LibGit2Sharp; | |
namespace TCBuildConfigSync |