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