Implemented interface member:
property
EvaluatedValue
Microsoft.Build.Evaluation.IProperty.EvaluatedValue
20 references to EvaluatedValue
dotnet (15)
CommandFactory\CommandResolution\MSBuildProject.cs (7)
28.EvaluatedValue; 39.EvaluatedValue; 50.EvaluatedValue; 63?.EvaluatedValue; 93?.EvaluatedValue; 182.Select(p => p.EvaluatedValue) 191.EvaluatedValue;
Commands\New\MSBuildEvaluation\MSBuildEvaluator.cs (4)
124IsSdkStyleProject = evaluatedProject.GetProperty("UsingMicrosoftNETSDK")?.EvaluatedValue == "true"; 127targetFrameworks = evaluatedProject.GetProperty("TargetFrameworks")?.EvaluatedValue?.Split(";"); 129targetFramework = evaluatedProject.GetProperty("TargetFramework")?.EvaluatedValue; 141if (!evaluatedProject.GetProperty("RestoreSuccess")?.EvaluatedValue.Equals("true", StringComparison.OrdinalIgnoreCase) ?? true)
Commands\New\MSBuildEvaluation\NonSDKStyleEvaluationResult.cs (2)
15internal string? TargetFrameworkVersion => EvaluatedProject?.GetProperty("TargetFrameworkVersion").EvaluatedValue; 17internal string? PlatformTarget => EvaluatedProject?.GetProperty("PlatformTarget").EvaluatedValue;
Commands\New\MSBuildEvaluation\ProjectContextSymbolSource.cs (2)
50string? propertyValue = evaluationResult.EvaluatedProject.GetProperty(bindname)?.EvaluatedValue; 56propertyValue = evaluationResult.EvaluatedProject.GetProperty(bindname)?.EvaluatedValue;
Microsoft.Build (2)
Definition\Project.cs (1)
4665string value = property?.EvaluatedValue ?? String.Empty;
ObjectModelRemoting\DefinitionObjectsLinks\ProjectPropertyLink.cs (1)
32/// Allow implement the <see cref="ProjectProperty.EvaluatedValue"/> for remoted objects.
Microsoft.DotNet.Arcade.Sdk (1)
src\InstallDotNetCore.cs (1)
115else if (!SemanticVersion.TryParse(property.EvaluatedValue, out version))
NuGet.CommandLine.XPlat (2)
Utility\MSBuildAPIUtility.cs (2)
1047.Select(p => p.EvaluatedValue); 1054.Select(p => p.EvaluatedValue)