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