plugin-dotnet-agent/src/main/kotlin/jetbrains/buildServer/dotcover/command/DotCoverReportCommandLineBuilder.kt [28:43]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override fun buildCommand( executableFile: Path, environmentVariables: List, configFilePath: String, baseCommandLine: CommandLine? ): CommandLine { return CommandLine( baseCommandLine = null, target = TargetType.CodeCoverageProfiler, executableFile = executableFile, workingDirectory = workingDirectory, arguments = createArguments(configFilePath).toList(), environmentVariables = environmentVariables, title = "dotCover report" ) } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - plugin-dotnet-agent/src/main/kotlin/jetbrains/buildServer/dotcover/command/DotCoverMergeCommandLineBuilder.kt [23:38]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override fun buildCommand( executableFile: Path, environmentVariables: List, configFilePath: String, baseCommandLine: CommandLine? ): CommandLine { return CommandLine( baseCommandLine = null, target = TargetType.CodeCoverageProfiler, executableFile = executableFile, workingDirectory = workingDirectory, arguments = createArguments(configFilePath).toList(), environmentVariables = environmentVariables, title = "dotCover merge" ) } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -