10 references to True
Microsoft.Build (8)
BackEnd\BuildManager\BuildManager.cs (1)
633
_buildParameters.ProjectIsolationMode = ProjectIsolationMode.
True
;
BackEnd\BuildManager\BuildParameters.cs (5)
860
get => ProjectIsolationMode == ProjectIsolationMode.
True
;
861
set => ProjectIsolationMode = value ? ProjectIsolationMode.
True
: ProjectIsolationMode.False;
872
/// this sets the isolation mode to <see cref="ProjectIsolationMode.
True
"/>.
883
/// this sets the isolation mode to <see cref="ProjectIsolationMode.
True
"/>.
974
internal bool SkippedResultsDoNotCauseCacheMiss() => ProjectIsolationMode == ProjectIsolationMode.
True
;
BackEnd\Components\Scheduler\Scheduler.cs (1)
2071
&& (isolateProjects == ProjectIsolationMode.
True
|| isolateProjects == ProjectIsolationMode.MessageUponIsolationViolation)
BackEnd\Shared\BuildRequestConfiguration.cs (1)
197
|| projectIsolationMode != ProjectIsolationMode.
True
MSBuild (2)
XMake.cs (2)
3064
return boolValue ? ProjectIsolationMode.
True
: ProjectIsolationMode.False;
3067
ProjectIsolationMode isolateProjects = ProjectIsolationMode.
True
;