38 references to False
Microsoft.Build (35)
BackEnd\BuildManager\BuildManager.cs (1)
1496Assumed.False(submission.IsCompleted, "Submission already complete.");
BackEnd\BuildManager\CacheAggregator.cs (2)
33Assumed.False(_aggregated, "Cannot add after aggregation"); 40Assumed.False(_aggregated, "Cannot aggregate twice");
BackEnd\Components\BuildRequestEngine\BuildRequestEntry.cs (1)
376Assumed.False(_outstandingResults.ContainsKey(result.NodeRequestId), "Request already contains results.");
BackEnd\Components\Caching\ConfigCache.cs (1)
182Assumed.False(configurations.ById.IsEmpty, "No configurations exist from which to obtain the smallest configuration id.");
BackEnd\Components\Caching\ConfigCacheWithOverride.cs (2)
53Assumed.False(CurrentCache.HasConfiguration(configId), "caches should not overlap"); 115Assumed.False(CurrentCache.HasConfiguration(configId), "caches should not overlap");
BackEnd\Components\Communications\NodeManager.cs (1)
134Assumed.False(_componentShutdown, "We should never be calling ShutdownNodes after ShutdownComponent has been called");
BackEnd\Components\Communications\NodeProviderOutOfProcTaskHost.cs (2)
485Assumed.False(isArm64, "ARM64 CLR2 task hosts are not supported."); 715Assumed.False(_nodeContexts.ContainsKey(nodeKey), "We should not already have a node for this context! Did we forget to call DisconnectFromHost somewhere?");
BackEnd\Components\Communications\TaskHostNodeManager.cs (1)
67Assumed.False(_componentShutdown, "We should never be calling ShutdownNodes after ShutdownComponent has been called");
BackEnd\Components\RequestBuilder\Lookup.cs (3)
918Assumed.False(_cloneTable.ContainsKey(cloneItem), "Should be new, not already in table!"); 1049Assumed.False(tableOfItemsOfSameType.Contains(item), "Item should not be in table"); 1064Assumed.False(tableOfItemsOfSameType.ContainsKey(item), "Item should not be in table");
BackEnd\Components\RequestBuilder\RequestBuilder.cs (8)
208Assumed.False(_terminateEvent.WaitOne(0), "Cancel already called"); 229Assumed.False(_terminateEvent.WaitOne(0), "Request already terminated"); 230Assumed.False(_continueEvent.WaitOne(0), "Request already continued"); 246Assumed.False(_terminateEvent.WaitOne(0), "Request already terminated"); 247Assumed.False(_pendingResourceRequests.IsEmpty, "No pending resource requests"); 478Assumed.False(_inMSBuildCallback, "Already in an MSBuild callback!"); 1022Assumed.False(isContinue, "Unexpected null results during continue"); 1476Assumed.False(_isZombie, "RequestBuilder has been zombied.");
BackEnd\Components\RequestBuilder\TargetUpToDateChecker.cs (1)
206Assumed.False(IsItemVectorEmpty(itemVectorsInTargetInputs), "The target must have inputs.");
BackEnd\Components\Scheduler\SchedulableRequest.cs (2)
344Assumed.False(_requestsWeAreBlockedBy.ContainsKey(key), "We are already blocked by this request."); 345Assumed.False(blockingRequest._requestsWeAreBlocking.Contains(this), "The blocking request thinks it is already blocking us.");
BackEnd\Shared\BuildRequest.cs (1)
413Assumed.False(IsConfigurationResolved, "Configuration already resolved");
BackEnd\Shared\BuildRequestConfiguration.cs (2)
403Assumed.False(IsCached, "We shouldn't be accessing the ProjectInstance when the configuration is cached."); 617Assumed.False(IsCached, "Configuration is cached, we shouldn't be accessing the lookup.");
Definition\Project.cs (2)
1803Assumed.False(implementationInternal.IsZombified, "OM_ProjectIsNoLongerActive"); 3766Assumed.False(IsDirty, "Should not be dirty now");
Evaluation\Expander.cs (1)
2122Assumed.False(matchesEnumerator.MoveNext(), "Expected just one item vector");
Evaluation\ProjectRootElementCache.cs (1)
253Assumed.False(System.Threading.Monitor.IsEntered(_locker), "Detected lock ordering inversion in ProjectRootElementCache.");
Graph\ProjectInterpretation.cs (2)
284Assumed.False(string.IsNullOrWhiteSpace(globalPropertyName), "Must have an inner build property"); 285Assumed.False(string.IsNullOrWhiteSpace(globalPropertyValues), "Must have values for the inner build property");
Instance\TaskRegistry.cs (1)
288Assumed.False(taskRegistry._isInitialized, "Attempt to modify TaskRegistry after it was initialized.");
Microsoft.Build.Framework (2)
FileUtilities_TempFiles.cs (1)
195Assumed.False(FileSystems.Default.FileExists(file), "Guid should be unique");
Utilities\AssemblyNameExtension.cs (1)
327Assumed.False(immutable, "Object is immutable cannot replace the version");
Microsoft.Build.Tasks.Core (1)
AssemblyDependency\Reference.cs (1)
621Assumed.False((IsPrimary && _primarySourceItem == null), "A primary reference must have a primary source item.");