5 implementations of Write
dotnet (2)
Commands\Workload\Install\NetSdkMsiInstallerClient.cs (1)
111public void Write(string message) => _setupLogger.LogMessage(message);
Commands\Workload\Install\NullReporter.cs (1)
10public void Write(string message) { }
Microsoft.DotNet.Cli.Utils (1)
Reporter.cs (1)
129public void Write(string message)
Microsoft.NET.TestFramework (1)
Utilities\BufferedReporter.cs (1)
40public void Write(string message)
Microsoft.TemplateEngine.Cli.UnitTests (1)
TemplatePackageDisplayTest.cs (1)
201public void Write(string message) => ReportedStrings.Append(message);
14 references to Write
dotnet (10)
Commands\Reference\Add\ReferenceAddCommand.cs (2)
45Reporter.Error.Write(GetProjectNotCompatibleWithFrameworksDisplayString( 69Reporter.Error.Write(GetProjectNotCompatibleWithFrameworksDisplayString(@ref, [frameworkString]));
Commands\Run\CSharpCompilerCommand.cs (1)
136Reporter.Output.Write(completed.Output);
Commands\Workload\Install\NetSdkMsiInstallerClient.cs (2)
1060Reporter.Write($"{progressLabel}..."); 1067Reporter.Write(".");
Commands\Workload\WorkloadCommandParser.cs (4)
118reporter.Write($"{separator}{CliCommandStrings.WorkloadSourceColumn}:"); 121reporter.Write($"{separator}{CliCommandStrings.WorkloadManifestVersionColumn}:"); 124reporter.Write($"{separator}{CliCommandStrings.WorkloadManifestPathColumn}:"); 127reporter.Write($"{separator}{CliCommandStrings.WorkloadInstallTypeColumn}:");
Parser.cs (1)
288Reporter.Error.Write("Unhandled exception: ".Red().Bold());
dotnet.Tests (2)
ConfigurerTests\GivenADotnetFirstTimeUseConfigurer.cs (2)
52_reporterMock.Verify(r => r.Write(It.IsAny<string>()), Times.Never); 79_reporterMock.Verify(r => r.Write(It.IsAny<string>()), Times.Never);
Microsoft.TemplateEngine.Cli (2)
TemplatePackageDisplay.cs (2)
381reporter.Write(Environment.NewLine); 389reporter.Write(Environment.NewLine);