9 references to True
Microsoft.Build (7)
BackEnd\BuildManager\BuildManager.cs (1)
628
_buildParameters.ProjectIsolationMode = ProjectIsolationMode.
True
;
BackEnd\BuildManager\BuildParameters.cs (5)
842
get => ProjectIsolationMode == ProjectIsolationMode.
True
;
843
set => ProjectIsolationMode = value ? ProjectIsolationMode.
True
: ProjectIsolationMode.False;
854
/// this sets the isolation mode to <see cref="ProjectIsolationMode.
True
"/>.
865
/// this sets the isolation mode to <see cref="ProjectIsolationMode.
True
"/>.
956
internal bool SkippedResultsDoNotCauseCacheMiss() => ProjectIsolationMode == ProjectIsolationMode.
True
;
BackEnd\Components\Scheduler\Scheduler.cs (1)
2043
&& (isolateProjects == ProjectIsolationMode.
True
|| isolateProjects == ProjectIsolationMode.MessageUponIsolationViolation)
MSBuild (2)
XMake.cs (2)
3013
return boolValue ? ProjectIsolationMode.
True
: ProjectIsolationMode.False;
3016
ProjectIsolationMode isolateProjects = ProjectIsolationMode.
True
;