2 overrides of IsImmutable
Microsoft.Build (2)
Instance\ProjectPropertyInstance.cs (2)
368
public override bool
IsImmutable
=> true;
386
public override bool
IsImmutable
=> true;
11 references to IsImmutable
Microsoft.Build (3)
Instance\ProjectPropertyInstance.cs (3)
76
ProjectInstance.VerifyThrowNotImmutable(
IsImmutable
);
178
bool isImmutable =
IsImmutable
;
256
return 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)
82
Assert.False(property.
IsImmutable
);
95
Assert.True(property.
IsImmutable
);
Microsoft.Build.Engine.UnitTests (6)
Instance\ProjectPropertyInstance_Internal_Tests.cs (6)
58
Assert.False(property.
IsImmutable
);
66
Assert.Equal(property.
IsImmutable
, deserializedProperty.
IsImmutable
);
77
Assert.True(property.
IsImmutable
);
85
Assert.Equal(property.
IsImmutable
, deserializedProperty.
IsImmutable
);