2 overrides of IsImmutable
Microsoft.Build (2)
Instance\ProjectPropertyInstance.cs (2)
341public override bool IsImmutable => true; 359public override bool IsImmutable => true;
11 references to IsImmutable
Microsoft.Build (3)
Instance\ProjectPropertyInstance.cs (3)
71ProjectInstance.VerifyThrowNotImmutable(IsImmutable); 151bool isImmutable = IsImmutable; 229return Create(that._name, that._escapedValue, mayBeReserved: true /* already validated */, isImmutable: that.IsImmutable, that is EnvironmentDerivedProjectPropertyInstance);
Microsoft.Build.Engine.OM.UnitTests (2)
Instance\ProjectPropertyInstance_Tests.cs (2)
82Assert.False(property.IsImmutable); 95Assert.True(property.IsImmutable);
Microsoft.Build.Engine.UnitTests (6)
Instance\ProjectPropertyInstance_Internal_Tests.cs (6)
58Assert.False(property.IsImmutable); 66Assert.Equal(property.IsImmutable, deserializedProperty.IsImmutable); 77Assert.True(property.IsImmutable); 85Assert.Equal(property.IsImmutable, deserializedProperty.IsImmutable);