9 references to True
Microsoft.Build (7)
BackEnd\BuildManager\BuildManager.cs (1)
596
_buildParameters.ProjectIsolationMode = ProjectIsolationMode.
True
;
BackEnd\BuildManager\BuildParameters.cs (5)
852
get => ProjectIsolationMode == ProjectIsolationMode.
True
;
853
set => ProjectIsolationMode = value ? ProjectIsolationMode.
True
: ProjectIsolationMode.False;
864
/// this sets the isolation mode to <see cref="ProjectIsolationMode.
True
"/>.
875
/// this sets the isolation mode to <see cref="ProjectIsolationMode.
True
"/>.
966
internal bool SkippedResultsDoNotCauseCacheMiss() => ProjectIsolationMode == ProjectIsolationMode.
True
;
BackEnd\Components\Scheduler\Scheduler.cs (1)
2043
&& (isolateProjects == ProjectIsolationMode.
True
|| isolateProjects == ProjectIsolationMode.MessageUponIsolationViolation)
MSBuild (2)
XMake.cs (2)
2806
return boolValue ? ProjectIsolationMode.
True
: ProjectIsolationMode.False;
2809
ProjectIsolationMode isolateProjects = ProjectIsolationMode.
True
;