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