13 writes to StandardErrorCallback
aspire (13)
Certificates\CertificateService.cs (2)
33StandardErrorCallback = ensureCertificateCollector.AppendError, 46StandardErrorCallback = ensureCertificateCollector.AppendError,
Commands\AddCommand.cs (1)
147StandardErrorCallback = outputCollector.AppendError,
Commands\ExecCommand.cs (1)
154StandardErrorCallback = runOutputCollector.AppendError,
Commands\PublishCommandBase.cs (2)
125StandardErrorCallback = buildOutputCollector.AppendError, 145StandardErrorCallback = operationOutputCollector.AppendError,
Commands\RunCommand.cs (2)
128StandardErrorCallback = buildOutputCollector.AppendError, 156StandardErrorCallback = runOutputCollector.AppendError,
DotNet\DotNetCliRunner.cs (3)
167options.StandardErrorCallback = (line) => { 296options.StandardErrorCallback = (line) => { 743options.StandardErrorCallback = (line) => {
Templating\DotNetTemplateFactory.cs (2)
238StandardErrorCallback = templateInstallCollector.AppendOutput, 262StandardErrorCallback = newProjectCollector.AppendOutput,
5 references to StandardErrorCallback
aspire (3)
DotNet\DotNetCliRunner.cs (3)
166var existingStandardErrorCallback = options.StandardErrorCallback; // Preserve the existing callback if it exists. 295var existingStandardErrorCallback = options.StandardErrorCallback; // Preserve the existing callback if it exists. 742var existingStandardErrorCallback = options.StandardErrorCallback; // Preserve the existing callback if it exists.
Aspire.Cli.Tests (2)
Certificates\CertificateServiceTests.cs (2)
26Assert.NotNull(options.StandardErrorCallback); 27options.StandardErrorCallback!.Invoke("There was an error trusting the HTTPS developer certificate. It will be trusted by some clients but not by others.");