Implemented interface member:
property
Value
Microsoft.Build.Execution.IPropertyElementWithLocation.Value
21 writes to Value
Microsoft.Build (11)
Construction\ProjectPropertyGroupElement.cs (2)
65
newProperty.
Value
= unevaluatedValue;
85
property.
Value
= unevaluatedValue;
Construction\ProjectRootElement.cs (1)
1195
matchingProperty.
Value
= value;
Construction\Solution\SolutionProjectGenerator.cs (6)
916
directorySolutionPropsFileProperty.
Value
= "Directory.Solution.props";
920
directorySolutionPropsBasePathProperty.
Value
= "$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), '$(_DirectorySolutionPropsFile)'))";
924
directorySolutionPropsPathProperty.
Value
= "$([System.IO.Path]::Combine('$(_DirectorySolutionPropsBasePath)', '$(_DirectorySolutionPropsFile)'))";
934
directorySolutionTargetsFileProperty.
Value
= "Directory.Solution.targets";
938
directorySolutionTargetsBasePathProperty.
Value
= "$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), '$(_DirectorySolutionTargetsFile)'))";
942
directorySolutionTargetsPathProperty.
Value
= "$([System.IO.Path]::Combine('$(_DirectorySolutionTargetsBasePath)', '$(_DirectorySolutionTargetsFile)'))";
Definition\ProjectProperty.cs (1)
407
_xml.
Value
= value;
Instance\ProjectPropertyInstance.cs (1)
309
property.
Value
= EvaluatedValue;
Microsoft.Build.Engine.OM.UnitTests (10)
Construction\ConstructionEditing_Tests.cs (4)
2593
element.
Value
= "v2";
2854
element.
Value
= "v2";
2940
element.
Value
= "v2";
3186
element.
Value
= "v2";
Construction\ProjectPropertyElement_Tests.cs (4)
162
property.
Value
= "vb";
178
property.
Value
= "v1";
232
property.
Value
= String.Empty;
247
property.
Value
= null;
ObjectModelRemoting\LinkedConstructionModify_Tests.cs (1)
719
prop.VerifySetter("newValue", (p) => p.Value, (p, v) => p.
Value
= v);
ObjectModelRemoting\RemoteProjectsProviderMock\ConstructionLinkMocks\MockProjectPropertyElementLink.cs (1)
28
public string Value { get => PropertyXml.Value; set => PropertyXml.
Value
= value; }
17 references to Value
Microsoft.Build (4)
Construction\ProjectPropertyElement.cs (1)
80
if (
Value
!= value)
Definition\ProjectProperty.cs (1)
399
return _xml.
Value
;
Evaluation\Evaluator.cs (2)
472
ProjectPropertyGroupTaskPropertyInstance property = new ProjectPropertyGroupTaskPropertyInstance(propertyElement.Name, propertyElement.
Value
, propertyElement.Condition, propertyElement.Location, propertyElement.ConditionLocation);
1302
string evaluatedValue = _expander.ExpandIntoStringLeaveEscaped(propertyElement.
Value
, ExpanderOptions.ExpandProperties, propertyElement.Location);
Microsoft.Build.Engine.OM.UnitTests (13)
Construction\ProjectPropertyElement_Tests.cs (5)
29
Assert.Equal("v", property.
Value
);
53
Assert.Equal(@"A<B>C<D /></B>E", property.
Value
);
163
Assert.Equal("vb", property.
Value
);
179
Assert.Equal("v1", property.
Value
);
233
Assert.Equal(String.Empty, property.
Value
);
Construction\ProjectRootElement_Tests.cs (2)
835
Assert.Equal("r1", properties[2].
Value
);
836
Assert.Equal("t1", properties[5].
Value
);
ObjectModelRemoting\Helpers\ViewValidation.construction.cs (2)
936
Assert.Equal(realXml.
Value
, viewXml.
Value
);
ObjectModelRemoting\LinkedConstructionModify_Tests.cs (3)
719
prop.VerifySetter("newValue", (p) => p.
Value
, (p, v) => p.Value = v);
742
propGrp.Add2NewChildrenWithVerify<ProjectPropertyElement>("prop" /*same name*/, (pg, n) => pg.AddProperty(n, $"value2{n}"), (p, n) => p.
Value
== $"value2{n}", out var prop1_2, out var prop2_2);
748
propGrp.Add2NewChildrenWithVerify<ProjectPropertyElement>("setnewprop" /*same name*/, (pg, n) => pg.SetProperty(n, $"value2{n}"), (p, n) => p.
Value
== $"value2{n}", out var setNewProp1_2, out var setNewProp2_2);
ObjectModelRemoting\RemoteProjectsProviderMock\ConstructionLinkMocks\MockProjectPropertyElementLink.cs (1)
28
public string Value { get => PropertyXml.
Value
; set => PropertyXml.Value = value; }