1 write to Verbose
Microsoft.DotNet.Cli.Utils (1)
Reporter.cs (1)
106Verbose = CommandLoggingContext.IsVerbose ? s_verboseReporter : NullReporter;
112 references to Verbose
dotnet (92)
BuildServer\VBCSCompilerServer.cs (3)
39Reporter.Verbose.WriteLine($"Shutting down '{s_toolsetPackageName}' compilers."); 42Reporter.Verbose.WriteLine($"Enumerating '{toolsetPackageDirectory}'."); 48Reporter.Verbose.WriteLine($"Found '{vbcsCompilerPath}'.");
CliCompletion.cs (1)
30Reporter.Verbose.WriteLine($"Exception occurred while getting completions: {e}");
CommandFactory\CommandResolution\OutputPathCommandResolver.cs (1)
62Reporter.Verbose.WriteLine(
CommandFactory\CommandResolution\PackagedCommandSpecFactory.cs (3)
32Reporter.Verbose.WriteLine(string.Format( 43Reporter.Verbose.WriteLine(string.Format( 55Reporter.Verbose.WriteLine(string.Format(
CommandFactory\CommandResolution\PackagedCommandSpecFactoryWithCliRuntime.cs (2)
38Reporter.Verbose.WriteLine( 71Reporter.Verbose.WriteLine(
CommandFactory\CommandResolution\ProjectDependenciesCommandResolver.cs (6)
40Reporter.Verbose.WriteLine(string.Format( 50Reporter.Verbose.WriteLine(string.Format( 88Reporter.Verbose.WriteLine(string.Format( 99Reporter.Verbose.WriteLine(string.Format( 110Reporter.Verbose.WriteLine(string.Format( 150Reporter.Verbose.WriteLine(string.Format(
CommandFactory\CommandResolution\ProjectFactory.cs (3)
37Reporter.Verbose.WriteLine(string.Format( 44Reporter.Verbose.WriteLine(string.Format( 60Reporter.Verbose.WriteLine(ex.ToString().Red());
CommandFactory\CommandResolution\ProjectToolsCommandResolver.cs (16)
31Reporter.Verbose.WriteLine(string.Format( 54Reporter.Verbose.WriteLine(string.Format( 75Reporter.Verbose.WriteLine(string.Format( 94Reporter.Verbose.WriteLine(string.Format( 107Reporter.Verbose.WriteLine(string.Format( 113Reporter.Verbose.WriteLine(string.Format( 151Reporter.Verbose.WriteLine(string.Format( 162Reporter.Verbose.WriteLine(string.Format( 178Reporter.Verbose.WriteLine(string.Format( 193Reporter.Verbose.WriteLine(string.Format( 290Reporter.Verbose.WriteLine(string.Format( 326Reporter.Verbose.WriteLine(string.Format( 381Reporter.Verbose.WriteLine(string.Format(CliStrings.MSBuildArgs, 422Reporter.Verbose.WriteLine(string.Format( 435Reporter.Verbose.WriteLine(string.Format( 445Reporter.Verbose.WriteLine(string.Format(
CommandFactory\CommandResolution\PublishedPathCommandResolver.cs (3)
41Reporter.Verbose.WriteLine(string.Format( 51Reporter.Verbose.WriteLine(string.Format( 69Reporter.Verbose.WriteLine(string.Format(
Commands\BuildServer\Shutdown\BuildServerShutdownCommand.cs (1)
149Reporter.Verbose.WriteLine(exception.ToString().Red());
Commands\Clean\FileBasedAppArtifacts\CleanFileBasedAppArtifactsCommand.cs (4)
28Reporter.Verbose.WriteLine($"Would remove folder: {folder.FullName}"); 36Reporter.Verbose.WriteLine($"Removed folder: {folder.FullName}"); 122Reporter.Verbose.WriteLine("Starting automatic cleanup of file-based app artifacts."); 174Reporter.Verbose.WriteLine($"Cannot access artifacts metadata file '{metadataFile?.FullName}': {ex}");
Commands\Package\Add\PackageAddCommand.cs (2)
222Reporter.Verbose.WriteLine($"Assets file does not exist: {projectAssetsFile}"); 285Reporter.Verbose.WriteLine($"Directory.Packages.props file does not exist: {directoryPackagesPropsPath}");
Commands\Run\CSharpCompilerCommand.cs (3)
114Reporter.Verbose.WriteLine($"Copying '{objFile}' to '{BuildResultFile}'."); 135Reporter.Verbose.WriteLine("Compiler server processed compilation."); 341Reporter.Verbose.WriteLine($"Generating CSC auxiliary file because it does not exist: {file}");
Commands\Run\RunCommand.cs (4)
390Reporter.Verbose.WriteLine("Getting target command: from cache."); 399Reporter.Verbose.WriteLine("Getting target command: for csc-built program."); 403Reporter.Verbose.WriteLine("Getting target command: evaluating project."); 785Reporter.Verbose.WriteLine($"Failed to send run telemetry: {ex}");
Commands\Run\VirtualProjectBuildingCommand.cs (33)
451Reporter.Verbose.WriteLine($"Not saving CSC arguments because there is an opt-out via MSBuild property {FileBasedProgramCanSkipMSBuild}."); 459Reporter.Verbose.WriteLine("Not saving CSC arguments because there is a project directive."); 474Reporter.Verbose.WriteLine($"Reusing previous CSC arguments ({cache.CurrentEntry.CscArguments.Length}) because none were found in the {Constants.CoreCompile} target."); 484Reporter.Verbose.WriteLine($"Found CSC arguments ({cache.CurrentEntry.CscArguments.Length}) and build result path: {cache.CurrentEntry.BuildResultFile}"); 489Reporter.Verbose.WriteLine($"No CSC arguments found in targets: {string.Join(", ", result.ResultsByTarget.Keys)}"); 671Reporter.Verbose.WriteLine("CSC auxiliary files can NOT be reused due to the same reason build is needed."); 677Reporter.Verbose.WriteLine("CSC auxiliary files can NOT be reused because previous build level was not CSC " + 682Reporter.Verbose.WriteLine("CSC auxiliary files can be reused."); 753Reporter.Verbose.WriteLine("Building because cache file does not exist: " + successCacheFile.FullName); 760Reporter.Verbose.WriteLine("Building because start cache file does not exist: " + startCacheFile.FullName); 768Reporter.Verbose.WriteLine("Building because start cache file is newer than success cache file (previous build likely failed): " + startCacheFile.FullName); 778Reporter.Verbose.WriteLine("Building because previous cache entry could not be deserialized: " + successCacheFile.FullName); 790Reporter.Verbose.WriteLine($""" 799Reporter.Verbose.WriteLine($""" 809Reporter.Verbose.WriteLine($""" 820Reporter.Verbose.WriteLine($""" 832Reporter.Verbose.WriteLine("Building because entry point file is missing: " + entryPointFile.FullName); 840Reporter.Verbose.WriteLine("Compiling because entry point file is modified: " + entryPointFile.FullName); 850Reporter.Verbose.WriteLine("Building because implicit build file is missing or modified: " + implicitBuildFileInfo.FullName); 860Reporter.Verbose.WriteLine("Building because new implicit build file is present: " + implicitBuildFilePath); 877Reporter.Verbose.WriteLine($"Failed to deserialize cache entry ({path}): {e.GetType().FullName}: {e.Message}"); 900Reporter.Verbose.WriteLine("No need to build, the output is up to date."); 909Reporter.Verbose.WriteLine("No CSC arguments from previous run."); 913Reporter.Verbose.WriteLine("We have CSC arguments but not run properties. That's unexpected."); 917Reporter.Verbose.WriteLine("We have CSC arguments but not build result file. That's unexpected."); 921Reporter.Verbose.WriteLine("Cannot use CSC arguments from previous run because directives changed."); 925Reporter.Verbose.WriteLine("We have CSC arguments from previous run. Skipping MSBuild and using CSC only."); 941Reporter.Verbose.WriteLine("Using MSBuild because there are directives in the source file."); 949Reporter.Verbose.WriteLine($"Using MSBuild because there are global properties, for example '{exampleKey}={exampleValue}'."); 956Reporter.Verbose.WriteLine($"Using MSBuild because there are implicit build files, for example '{exampleMSBuildFile}'."); 964Reporter.Verbose.WriteLine($"Using MSBuild because NuGet package file does not exist: {filePath}"); 969Reporter.Verbose.WriteLine("Skipping MSBuild and using CSC only."); 1008Reporter.Verbose.WriteLine($"Cannot touch folder '{directory}': {ex}");
Commands\Workload\Clean\WorkloadCleanCommand.cs (1)
117Utils.Reporter.Verbose.WriteLine(ex.Message);
Commands\Workload\Install\FileBasedInstaller.cs (1)
401Reporter.Verbose);
NugetPackageDownloader\NuGetConsoleLogger.cs (2)
57Reporter.Verbose.WriteLine($"[NuGet Manager] [DEBUG] {data}"); 82Reporter.Verbose.WriteLine($"[NuGet Manager] [Verbose] {data}");
Program.cs (1)
377Reporter.Verbose.WriteLine(
TransactionalAction.cs (2)
89Reporter.Verbose.WriteLine(string.Format("TransactionAbortedException Message: {0}", ex.Message)); 90Reporter.Verbose.WriteLine(
Microsoft.DotNet.Cli.Utils (6)
Command.cs (5)
32Reporter.Verbose.WriteLine(string.Format( 48Reporter.Verbose.WriteLine($"> {Command.FormatProcessInfo(_process.StartInfo)}".White()); 57Reporter.Verbose.WriteLine(string.Format( 81Reporter.Verbose.WriteLine(message.Green()); 85Reporter.Verbose.WriteLine(message.Red().Bold());
Extensions\ExceptionExtensions.cs (1)
17Reporter.Verbose.WriteLine($"Warning: Ignoring exception: {e.ToString().Yellow()}");
Microsoft.TemplateEngine.Cli (14)
Commands\AliasAssignmentCoordinator.cs (1)
161Reporter.Verbose.WriteLine(string.Format(LocalizableStrings.AliasAssignmentCoordinator_Error_ShortAlias, parameter.Name, shortName, qualifiedShortName));
Commands\CliPathInfo.cs (1)
47Reporter.Verbose.WriteLine($"Global Settings Location: {definedSettingsLocation}");
NuGet\CliNuGetLogger.cs (2)
43Reporter.Verbose.WriteLine($"[NuGet Manager] [DEBUG] {data}"); 68Reporter.Verbose.WriteLine($"[NuGet Manager] [Verbose] {data}");
PostActionDispatcher.cs (1)
234Reporter.Verbose.WriteLine(LocalizableStrings.Generic_Details, e.ToString());
PostActionProcessors\AddJsonPropertyPostActionProcessor.cs (1)
232Reporter.Verbose.WriteLine(string.Format(LocalizableStrings.PostAction_ModifyJson_Verbose_AttemptingToFindJsonFile, matchPattern, directory));
PostActionProcessors\ChmodPostActionProcessor.cs (2)
56Reporter.Verbose.WriteLine("Unable to start sub-process."); 72Reporter.Verbose.WriteLine(LocalizableStrings.Generic_Details, ex.ToString());
PostActionProcessors\ProcessStartPostActionProcessor.cs (2)
67Reporter.Verbose.WriteLine("Unable to start sub-process."); 91Reporter.Verbose.WriteLine(LocalizableStrings.Generic_Details, ex.ToString());
TemplatePackageCoordinator.cs (2)
596Reporter.Verbose.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Verbose_NuGetCredentialServiceError, ex.ToString()); 1131Reporter.Verbose.WriteLine($"Custom source {source} is already loaded from default configuration.");
TemplateSearch\CliHostSearchCacheData.cs (2)
38Reporter.Verbose.WriteLine($"Error deserializing the cli host specific template data for template {data.Name}, details:{ex}"); 45Reporter.Verbose.WriteLine($"Error deserializing the cli host specific template data {cacheObject}, details:{ex}");