11 references to Immutable
Microsoft.Build (6)
Graph\ProjectGraph.cs (1)
48
/// <see cref="ProjectInstanceSettings.
Immutable
" />, the resulting ProjectGraph
Instance\ProjectInstance.cs (5)
61
ImmutableWithFastItemLookup =
Immutable
| 0x2
380
var immutable = (settings & ProjectInstanceSettings.
Immutable
) == ProjectInstanceSettings.
Immutable
;
653
var immutable = (settings & ProjectInstanceSettings.
Immutable
) == ProjectInstanceSettings.
Immutable
;
Microsoft.Build.Engine.OM.UnitTests (2)
Instance\ProjectInstance_Tests.cs (1)
1032
ProjectInstance instance = immutable ? project.CreateProjectInstance(ProjectInstanceSettings.
Immutable
) : project.CreateProjectInstance();
Instance\ProjectPropertyInstance_Tests.cs (1)
93
var snapshot = project.CreateProjectInstance(ProjectInstanceSettings.
Immutable
);
Microsoft.Build.Engine.UnitTests (3)
BackEnd\BuildManager_Tests.cs (3)
3707
var mainInstance = mainProject.CreateProjectInstance(ProjectInstanceSettings.
Immutable
).DeepCopy(isImmutable: false);
3734
var p2pInstance = p2pProject.CreateProjectInstance(ProjectInstanceSettings.
Immutable
).DeepCopy(isImmutable: false);
3859
ProjectInstance instance = project.CreateProjectInstance(ProjectInstanceSettings.
Immutable
).DeepCopy(false);