7 references to SearchPaths
Microsoft.Build (3)
Evaluation\Evaluator.cs (3)
1555var pathsToSearch = new string[fallbackSearchPathMatch.SearchPaths.Count + 1]; 1557fallbackSearchPathMatch.SearchPaths.CopyTo(pathsToSearch, 1); // The list of fallbacks, in order 2507var onlyFallbackSearchPaths = searchPathMatch.SearchPaths.Select(s => _data.ExpandString(s)).ToList();
Microsoft.Build.Engine.UnitTests (4)
Definition\Toolset_Tests.cs (1)
156Assert.Equal(@"c:\foo", t2.ImportPropertySearchPathsTable["MSBuildExtensionsPath"].SearchPaths[0]);
Definition\ToolsetConfigurationReader_Tests.cs (3)
587Assert.Equal(paths.SearchPaths.Count, expectedPaths.Length); 589for (int i = 0; i < paths.SearchPaths.Count; i++) 591Assert.Equal(paths.SearchPaths[i], expectedPaths[i]);