1 write to _logger
dotnet (1)
Commands\New\MSBuildEvaluation\MSBuildEvaluator.cs (1)
55_logger = _settings.Host.LoggerFactory.CreateLogger(nameof(MSBuildEvaluator));
17 references to _logger
dotnet (17)
Commands\New\MSBuildEvaluation\MSBuildEvaluator.cs (17)
76_logger?.LogDebug("Output directory is: {0}.", _outputDirectory); 77_logger?.LogDebug("Project full path is: {0}.", _projectFullPath ?? "<null>"); 86_logger?.LogDebug("Found project files: {0}.", string.Join("; ", foundFiles)); 92_logger?.LogDebug("Exception occurred when searching for the project file: {0}", e.Message); 97_logger?.LogDebug("No project found."); 102_logger?.LogDebug("Multiple projects found."); 122_logger?.LogDebug("Evaluating project: {0}", projectPath); 127_logger?.LogDebug("SDK-style project: {0}", IsSdkStyleProject); 130_logger?.LogDebug("Target frameworks: {0}", string.Join("; ", targetFrameworks ?? [])); 132_logger?.LogDebug("Target framework: {0}", targetFramework ?? "<null>"); 138_logger?.LogDebug("Project is non-SDK style, cannot evaluate restore status, succeeding."); 145_logger?.LogDebug("Project is not restored, exiting."); 152_logger?.LogDebug("Project is SDK style, single TFM:{0}, evaluation succeeded.", targetFramework); 160_logger?.LogDebug("Project is SDK style, but does not specify the framework."); 169_logger?.LogDebug("Evaluating project for target framework: {0}", tfm); 173_logger?.LogDebug("Project is SDK style, multi-target, evaluation succeeded."); 179_logger?.LogDebug("Unexpected error: {0}", e);