12 references to IsLoaded
Microsoft.Build (11)
BackEnd\BuildManager\BuildManager.cs (1)
1539if (config.IsLoaded)
BackEnd\Components\BuildRequestEngine\BuildRequestEngine.cs (1)
834if (configuration.IsLoaded)
BackEnd\Components\Caching\ConfigCache.cs (2)
139if (!configuration.IsLoaded) 148ErrorUtilities.VerifyThrow(configuration.IsLoaded, "Request to create configuration did not honor request to also load project.");
BackEnd\Components\ProjectCache\ProjectCacheService.cs (2)
487if (!buildRequestConfiguration.IsLoaded) 563if (!configuration.IsLoaded)
BackEnd\Components\RequestBuilder\RequestBuilder.cs (1)
1115if (!_requestEntry.RequestConfiguration.IsLoaded)
BackEnd\Shared\BuildRequestConfiguration.cs (4)
446ErrorUtilities.VerifyThrow(!IsLoaded, "Already loaded the project for this configuration id {0}.", ConfigurationId); 523ErrorUtilities.VerifyThrow(IsLoaded, $"This {nameof(BuildRequestConfiguration)} must be loaded at the end of this method"); 703if (IsActivelyBuilding || IsCached || !IsLoaded || !IsCacheable) 742if (!IsLoaded)
Microsoft.Build.Engine.UnitTests (1)
BackEnd\BuildRequestConfiguration_Tests.cs (1)
312Assert.False(configuration.IsLoaded);