3 implementations of SourcePrefix
dotnet (1)
Commands\New\MSBuildEvaluation\ProjectContextSymbolSource.cs (1)
18
public string?
SourcePrefix
=> "msbuild";
Microsoft.TemplateEngine.Edge (2)
Components\EnvironmentVariablesBindSource.cs (1)
17
string IBindSymbolSource.
SourcePrefix
=> "env";
Components\HostParametersBindSource.cs (1)
17
string IBindSymbolSource.
SourcePrefix
=> "host";
2 references to SourcePrefix
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (2)
BindSymbolEvaluator.cs (2)
168
sourcesToSearch = _bindSymbolSources.Where(s => s.
SourcePrefix
?.Equals(prefix, StringComparison.OrdinalIgnoreCase) ?? false);
218
string prefixesList = string.Join(", ", highestPriorityTasks.Select(t => $"'{t.Source.
SourcePrefix
}:'"));