1 write to _logger
dotnet (1)
Commands\New\MSBuildEvaluation\MSBuildEvaluator.cs (1)
56_logger = _settings.Host.LoggerFactory.CreateLogger(nameof(MSBuildEvaluator));
17 references to _logger
dotnet (17)
Commands\New\MSBuildEvaluation\MSBuildEvaluator.cs (17)
77_logger?.LogDebug("Output directory is: {0}.", _outputDirectory); 78_logger?.LogDebug("Project full path is: {0}.", _projectFullPath ?? "<null>"); 87_logger?.LogDebug("Found project files: {0}.", string.Join("; ", foundFiles)); 93_logger?.LogDebug("Exception occurred when searching for the project file: {0}", e.Message); 98_logger?.LogDebug("No project found."); 103_logger?.LogDebug("Multiple projects found."); 120_logger?.LogDebug("Evaluating project: {0}", projectPath); 125_logger?.LogDebug("SDK-style project: {0}", IsSdkStyleProject); 128_logger?.LogDebug("Target frameworks: {0}", string.Join("; ", targetFrameworks ?? [])); 130_logger?.LogDebug("Target framework: {0}", targetFramework ?? "<null>"); 136_logger?.LogDebug("Project is non-SDK style, cannot evaluate restore status, succeeding."); 143_logger?.LogDebug("Project is not restored, exiting."); 150_logger?.LogDebug("Project is SDK style, single TFM:{0}, evaluation succeeded.", targetFramework); 158_logger?.LogDebug("Project is SDK style, but does not specify the framework."); 166_logger?.LogDebug("Evaluating project for target framework: {0}", tfm); 169_logger?.LogDebug("Project is SDK style, multi-target, evaluation succeeded."); 175_logger?.LogDebug("Unexpected error: {0}", e);