13 writes to SuppressLogging
aspire (8)
DotNet\DotNetCliRunner.cs (3)
163SuppressLogging = SuppressLogging, 396SuppressLogging = options.SuppressLogging, 1165SuppressLogging = true
Layout\LayoutProcessRunner.cs (1)
29SuppressLogging = true,
NuGet\NuGetPackageCache.cs (2)
138new ProcessInvocationOptions { SuppressLogging = true }, 204new ProcessInvocationOptions { SuppressLogging = true },
Telemetry\InternalMicrosoftDetector.cs (1)
1129SuppressLogging = true,
Utils\EnvironmentChecker\DevCertsCheck.cs (1)
421SuppressLogging = true,
Aspire.Cli.Tests (5)
DotNet\DotNetCliRunnerTests.cs (4)
2304var options = new ProcessInvocationOptions { SuppressLogging = true }; 2346var options = new ProcessInvocationOptions { SuppressLogging = true }; 2388var options = new ProcessInvocationOptions { SuppressLogging = true }; 2416var options = new ProcessInvocationOptions { SuppressLogging = true };
DotNet\ProcessInvocationOptionsTests.cs (1)
26SuppressLogging = true,
4 references to SuppressLogging
aspire (4)
DotNet\DotNetCliRunner.cs (2)
163SuppressLogging = SuppressLogging, 396SuppressLogging = options.SuppressLogging,
DotNet\ProcessExecutionFactory.cs (2)
51var effectiveLogger = options.SuppressLogging ? (ILogger)NullLogger.Instance : _logger; 105var effectiveLogger = options.SuppressLogging ? (ILogger)NullLogger.Instance : _logger;