plugin-dotnet-agent/src/main/kotlin/jetbrains/buildServer/dotnet/commands/BuildCommand.kt [25:53]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override val targetArguments: Sequence get() = _targetService.targets.map { TargetArguments(sequenceOf(CommandLineArgument(it.target.path, CommandLineArgumentType.Target))) } override fun getArguments(context: DotnetCommandContext): Sequence = sequence { parameters(DotnetConstants.PARAM_FRAMEWORK)?.trim()?.let { if (it.isNotBlank()) { yield(CommandLineArgument("--framework")) yield(CommandLineArgument(it)) } } parameters(DotnetConstants.PARAM_CONFIG)?.trim()?.let { if (it.isNotBlank()) { yield(CommandLineArgument("--configuration")) yield(CommandLineArgument(it)) } } parameters(DotnetConstants.PARAM_RUNTIME)?.trim()?.let { if (it.isNotBlank()) { yield(CommandLineArgument("--runtime")) yield(CommandLineArgument(it)) } } parameters(DotnetConstants.PARAM_OUTPUT_DIR)?.trim()?.let { if (it.isNotBlank()) { yield(CommandLineArgument("--output")) yield(CommandLineArgument(it)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - plugin-dotnet-agent/src/main/kotlin/jetbrains/buildServer/dotnet/commands/CleanCommand.kt [24:52]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override val targetArguments: Sequence get() = _targetService.targets.map { TargetArguments(sequenceOf(CommandLineArgument(it.target.path, CommandLineArgumentType.Target))) } override fun getArguments(context: DotnetCommandContext): Sequence = sequence { parameters(DotnetConstants.PARAM_FRAMEWORK)?.trim()?.let { if (it.isNotBlank()) { yield(CommandLineArgument("--framework")) yield(CommandLineArgument(it)) } } parameters(DotnetConstants.PARAM_CONFIG)?.trim()?.let { if (it.isNotBlank()) { yield(CommandLineArgument("--configuration")) yield(CommandLineArgument(it)) } } parameters(DotnetConstants.PARAM_RUNTIME)?.trim()?.let { if (it.isNotBlank()) { yield(CommandLineArgument("--runtime")) yield(CommandLineArgument(it)) } } parameters(DotnetConstants.PARAM_OUTPUT_DIR)?.trim()?.let { if (it.isNotBlank()) { yield(CommandLineArgument("--output")) yield(CommandLineArgument(it)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -