4 writes to ThrowInsteadOfSplittingItemElement
Microsoft.Build.Engine.OM.UnitTests (4)
Definition\DefinitionEditing_Tests.cs (1)
2593project.ThrowInsteadOfSplittingItemElement = true;
ObjectModelRemoting\LinkedEvaluationModify_Tests.cs (2)
94realProj.ThrowInsteadOfSplittingItemElement = false; 97viewProj.ThrowInsteadOfSplittingItemElement = true;
ObjectModelRemoting\RemoteProjectsProviderMock\EvaluationLinkMocks\MockProjectLink.cs (1)
30public bool ThrowInsteadOfSplittingItemElement { get => this.Source.ThrowInsteadOfSplittingItemElement; set => this.Source.ThrowInsteadOfSplittingItemElement = value; }
10 references to ThrowInsteadOfSplittingItemElement
Microsoft.Build (3)
Definition\Project.cs (2)
1677ErrorUtilities.VerifyThrowInvalidOperation(!ThrowInsteadOfSplittingItemElement, "OM_CannotSplitItemElementWhenSplittingIsDisabled", itemElement.Location, $"{nameof(Project)}.{nameof(ThrowInsteadOfSplittingItemElement)}");
ObjectModelRemoting\DefinitionObjectsLinks\ProjectLink.cs (1)
29/// Access to remote <see cref="Project.ThrowInsteadOfSplittingItemElement"/>.
Microsoft.Build.Engine.OM.UnitTests (7)
ObjectModelRemoting\Helpers\ViewValidation.evaluation.cs (2)
370Assert.Equal(real.ThrowInsteadOfSplittingItemElement, view.ThrowInsteadOfSplittingItemElement);
ObjectModelRemoting\LinkedEvaluationModify_Tests.cs (4)
95Assert.False(viewProj.ThrowInsteadOfSplittingItemElement); 96Assert.False(realProj.ThrowInsteadOfSplittingItemElement); 98Assert.True(viewProj.ThrowInsteadOfSplittingItemElement); 99Assert.True(realProj.ThrowInsteadOfSplittingItemElement);
ObjectModelRemoting\RemoteProjectsProviderMock\EvaluationLinkMocks\MockProjectLink.cs (1)
30public bool ThrowInsteadOfSplittingItemElement { get => this.Source.ThrowInsteadOfSplittingItemElement; set => this.Source.ThrowInsteadOfSplittingItemElement = value; }