Ejemplo n.º 1
0
        protected override bool TryGetTrxFile(AnalysisConfig config, ITeamBuildSettings settings, ILogger logger, out string trxFilePath)
        {
            trxFilePath = TrxFileReader.FindTrxFile(settings.BuildDirectory, logger);

            return(true);
        }
Ejemplo n.º 2
0
        protected override bool TryGetBinaryReportFile(AnalysisConfig config, ITeamBuildSettings settings, ILogger logger, out string binaryFilePath)
        {
            binaryFilePath = TrxFileReader.LocateCodeCoverageFile(settings.BuildDirectory, logger);

            return(true); // there aren't currently any conditions under which we'd want to stop processing
        }