13 writes to SuppressLogging
aspire (8)
DotNet\DotNetCliRunner.cs (3)
157SuppressLogging = SuppressLogging, 384SuppressLogging = options.SuppressLogging, 1154SuppressLogging = true
Layout\LayoutProcessRunner.cs (1)
29SuppressLogging = true,
NuGet\NuGetPackageCache.cs (2)
138new ProcessInvocationOptions { SuppressLogging = true }, 204new ProcessInvocationOptions { SuppressLogging = true },
Telemetry\InternalMicrosoftDetector.cs (1)
761SuppressLogging = true,
Utils\EnvironmentChecker\DevCertsCheck.cs (1)
421SuppressLogging = true,
Aspire.Cli.Tests (5)
DotNet\DotNetCliRunnerTests.cs (4)
2255var options = new ProcessInvocationOptions { SuppressLogging = true }; 2297var options = new ProcessInvocationOptions { SuppressLogging = true }; 2339var options = new ProcessInvocationOptions { SuppressLogging = true }; 2367var options = new ProcessInvocationOptions { SuppressLogging = true };
DotNet\ProcessInvocationOptionsTests.cs (1)
26SuppressLogging = true,
4 references to SuppressLogging
aspire (4)
DotNet\DotNetCliRunner.cs (2)
157SuppressLogging = SuppressLogging, 384SuppressLogging = options.SuppressLogging,
DotNet\ProcessExecutionFactory.cs (2)
48var effectiveLogger = options.SuppressLogging ? (ILogger)NullLogger.Instance : _logger; 102var effectiveLogger = options.SuppressLogging ? (ILogger)NullLogger.Instance : _logger;