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