3 implementations of DisplayName
dotnet (1)
Commands\New\MSBuildEvaluation\ProjectContextSymbolSource.cs (1)
16
public string
DisplayName
=> CliCommandStrings.ProjectContextSymbolSource_DisplayName;
Microsoft.TemplateEngine.Edge (2)
Components\EnvironmentVariablesBindSource.cs (1)
23
string IBindSymbolSource.
DisplayName
=> LocalizableStrings.EnvironmentVariablesBindSource_Name;
Components\HostParametersBindSource.cs (1)
23
string IBindSymbolSource.
DisplayName
=> LocalizableStrings.HostParametersBindSource_Name;
4 references to DisplayName
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (4)
BindSymbolEvaluator.cs (4)
41
string.Join(", ", _bindSymbolSources.Select(s => $"{s.
DisplayName
}({s.GetType().Name})")));
172
string.Join(", ", sourcesToSearch.Select(s => s.
DisplayName
)));
212
string.Join(", ", successfulTasks.Select(t => $"{t.Source.
DisplayName
} (priority: {t.Source.Priority}): '{t.Value}'")));
217
string sourcesList = string.Join(", ", highestPriorityTasks.Select(t => $"'{t.Source.
DisplayName
}'"));