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