Implemented interface member:
property
Value
Microsoft.Build.Execution.IPropertyElementWithLocation.Value
11 writes to Value
Microsoft.Build (11)
Construction\ProjectPropertyGroupElement.cs (2)
65
newProperty.
Value
= unevaluatedValue;
85
property.
Value
= unevaluatedValue;
Construction\ProjectRootElement.cs (1)
1219
matchingProperty.
Value
= value;
Construction\Solution\SolutionProjectGenerator.cs (6)
963
directorySolutionPropsFileProperty.
Value
= "Directory.Solution.props";
967
directorySolutionPropsBasePathProperty.
Value
= "$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), '$(_DirectorySolutionPropsFile)'))";
971
directorySolutionPropsPathProperty.
Value
= "$([System.IO.Path]::Combine('$(_DirectorySolutionPropsBasePath)', '$(_DirectorySolutionPropsFile)'))";
981
directorySolutionTargetsFileProperty.
Value
= "Directory.Solution.targets";
985
directorySolutionTargetsBasePathProperty.
Value
= "$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), '$(_DirectorySolutionTargetsFile)'))";
989
directorySolutionTargetsPathProperty.
Value
= "$([System.IO.Path]::Combine('$(_DirectorySolutionTargetsBasePath)', '$(_DirectorySolutionTargetsFile)'))";
Definition\ProjectProperty.cs (1)
407
_xml.
Value
= value;
Instance\ProjectPropertyInstance.cs (1)
309
property.
Value
= EvaluatedValue;
5 references to Value
dotnet (1)
Extensions\ProjectRootElementExtensions.cs (1)
17
?.
Value
Microsoft.Build (4)
Construction\ProjectPropertyElement.cs (1)
81
if (
Value
!= value)
Definition\ProjectProperty.cs (1)
399
return _xml.
Value
;
Evaluation\Evaluator.cs (2)
485
ProjectPropertyGroupTaskPropertyInstance property = new ProjectPropertyGroupTaskPropertyInstance(propertyElement.Name, propertyElement.
Value
, propertyElement.Condition, propertyElement.Location, propertyElement.ConditionLocation);
1321
string evaluatedValue = _expander.ExpandIntoStringLeaveEscaped(propertyElement.
Value
, ExpanderOptions.ExpandProperties, propertyElement.Location);