2 implementations of GetMatchingConfiguration
Microsoft.Build (2)
BackEnd\Components\Caching\ConfigCache.cs (1)
136public BuildRequestConfiguration GetMatchingConfiguration(ConfigurationMetadata configMetadata, ConfigCreateCallback callback, bool loadProject)
BackEnd\Components\Caching\ConfigCacheWithOverride.cs (1)
111public BuildRequestConfiguration GetMatchingConfiguration(ConfigurationMetadata configMetadata, ConfigCreateCallback callback, bool loadProject)
2 references to GetMatchingConfiguration
Microsoft.Build (2)
BackEnd\BuildManager\BuildManager.cs (1)
868BuildRequestConfiguration configuration = _configCache.GetMatchingConfiguration(
BackEnd\Components\Caching\ConfigCacheWithOverride.cs (1)
113return _override.GetMatchingConfiguration(configMetadata, callback, loadProject) ?? CurrentCache.GetMatchingConfiguration(configMetadata, callback, loadProject);