12 references to IsLoaded
Microsoft.Build (11)
BackEnd\BuildManager\BuildManager.cs (1)
1451if (config.IsLoaded)
BackEnd\Components\BuildRequestEngine\BuildRequestEngine.cs (1)
810if (configuration.IsLoaded)
BackEnd\Components\Caching\ConfigCache.cs (2)
158if (!configuration.IsLoaded) 167ErrorUtilities.VerifyThrow(configuration.IsLoaded, "Request to create configuration did not honor request to also load project.");
BackEnd\Components\ProjectCache\ProjectCacheService.cs (2)
409if (!buildRequestConfiguration.IsLoaded) 482if (!configuration.IsLoaded)
BackEnd\Components\RequestBuilder\RequestBuilder.cs (1)
1122if (!_requestEntry.RequestConfiguration.IsLoaded)
BackEnd\Shared\BuildRequestConfiguration.cs (4)
436ErrorUtilities.VerifyThrow(!IsLoaded, "Already loaded the project for this configuration id {0}.", ConfigurationId); 513ErrorUtilities.VerifyThrow(IsLoaded, $"This {nameof(BuildRequestConfiguration)} must be loaded at the end of this method"); 693if (IsActivelyBuilding || IsCached || !IsLoaded || !IsCacheable) 732if (!IsLoaded)
Microsoft.Build.Engine.UnitTests (1)
BackEnd\BuildRequestConfiguration_Tests.cs (1)
309Assert.False(configuration.IsLoaded);