13 references to True
Microsoft.Build (7)
BackEnd\BuildManager\BuildManager.cs (1)
546
_buildParameters.ProjectIsolationMode = ProjectIsolationMode.
True
;
BackEnd\BuildManager\BuildParameters.cs (5)
781
get => ProjectIsolationMode == ProjectIsolationMode.
True
;
782
set => ProjectIsolationMode = value ? ProjectIsolationMode.
True
: ProjectIsolationMode.False;
793
/// this sets the isolation mode to <see cref="ProjectIsolationMode.
True
"/>.
804
/// this sets the isolation mode to <see cref="ProjectIsolationMode.
True
"/>.
881
internal bool SkippedResultsDoNotCauseCacheMiss() => ProjectIsolationMode == ProjectIsolationMode.
True
;
BackEnd\Components\Scheduler\Scheduler.cs (1)
1972
bool logComment = ((isolateProjects == ProjectIsolationMode.
True
|| isolateProjects == ProjectIsolationMode.MessageUponIsolationViolation) && request.SkipStaticGraphIsolationConstraints);
Microsoft.Build.Engine.UnitTests (4)
BackEnd\CacheSerialization_Tests.cs (1)
103
ProjectIsolationMode.
True
));
Graph\IsolateProjects_Tests.cs (3)
152
ProjectIsolationMode = ProjectIsolationMode.
True
,
512
ProjectIsolationMode isolateProjects = ProjectIsolationMode.
True
,
599
_buildParametersPrototype.ProjectIsolationMode.ShouldBe(ProjectIsolationMode.
True
);
MSBuild (2)
XMake.cs (2)
3096
return boolValue ? ProjectIsolationMode.
True
: ProjectIsolationMode.False;
3099
ProjectIsolationMode isolateProjects = ProjectIsolationMode.
True
;