Implemented interface member:
property
EvaluatedValue
Microsoft.Build.Evaluation.IProperty.EvaluatedValue
40 references to EvaluatedValue
Microsoft.Build (39)
BackEnd\BuildManager\BuildManager.cs (1)
1546submission.BuildRequestData.ProjectInstance!.GetProperty(ReservedPropertyNames.projectDirectory)!.EvaluatedValue,
BackEnd\Components\Logging\ProjectLoggingContext.cs (3)
217properties = projectProperties.GetCopyOnReadEnumerable(property => new DictionaryEntry(property.Name, property.EvaluatedValue)); 221properties = projectProperties.Filter(p => p is not EnvironmentDerivedProjectPropertyInstance || EnvironmentUtilities.IsWellKnownEnvironmentDerivedProperty(p.Name), p => new DictionaryEntry(p.Name, p.EvaluatedValue)); 244properties = projectPropertiesToSerialize.Select((ProjectPropertyInstance property) => new DictionaryEntry(property.Name, property.EvaluatedValue));
BackEnd\Components\ProjectCache\ProjectCacheService.cs (4)
394globalProperties.Add(property.Name, property.EvaluatedValue); 504string? designTimeBuild = buildRequestConfiguration.GlobalProperties[DesignTimeProperties.DesignTimeBuild]?.EvaluatedValue; 505string? buildingProject = buildRequestConfiguration.GlobalProperties[DesignTimeProperties.BuildingProject]?.EvaluatedValue; 727globalProperties.Add(property.Name, property.EvaluatedValue);
BackEnd\Components\RequestBuilder\IntrinsicTasks\PropertyGroupIntrinsicTask.cs (1)
96Project.GetProperty(property.Name)?.EvaluatedValue ?? null,
BackEnd\Components\RequestBuilder\Lookup.cs (1)
223errorMessages.Add(ResourceUtilities.FormatResourceStringIgnoreCodeAndKeyword("PropertyOutputOverridden", propertyName, EscapingUtilities.UnescapeAll(propertyValue), property.EvaluatedValue));
BackEnd\Components\RequestBuilder\RequestBuilder.cs (1)
1173_requestEntry.TaskEnvironment.SetEnvironmentVariable(environmentProperty.Name, environmentProperty.EvaluatedValue);
BackEnd\Components\Scheduler\Scheduler.cs (2)
2127=> string.Join("; ", configuration.GlobalProperties.Select<ProjectPropertyInstance, string>(p => $"{p.Name}={p.EvaluatedValue}")); 2889file.WriteLine("{0} = \"{1}\"", property.Name, property.EvaluatedValue);
BackEnd\TaskExecutionHost\TaskExecutionHost.cs (3)
1326if (string.Equals(lookup.GetProperty(key)?.EvaluatedValue, "true", StringComparison.OrdinalIgnoreCase)) 1333if (string.Equals(lookup.GetProperty(metadataKey)?.EvaluatedValue, "true", StringComparison.OrdinalIgnoreCase)) 1720_projectInstance.GetProperty(outputTargetName)?.EvaluatedValue ?? null,
Construction\Solution\SolutionProjectGenerator.cs (2)
800_selectedSolutionConfiguration = String.Format(CultureInfo.InvariantCulture, "{0}|{1}", traversalInstance.GetProperty("Configuration").EvaluatedValue, traversalInstance.GetProperty("Platform").EvaluatedValue);
Definition\Toolset.cs (3)
649return subToolsetProperty.EvaluatedValue; 681return visualStudioVersionProperty.EvaluatedValue; 692return visualStudioVersionProperty.EvaluatedValue;
Definition\ToolsetReader.cs (1)
414initialPropertiesClone.GetProperty(p)?.EvaluatedValue);
Evaluation\Evaluator.cs (4)
267_isRunningInVisualStudio = string.Equals("true", _data.GlobalPropertiesDictionary.GetProperty("BuildingInsideVisualStudio")?.EvaluatedValue, StringComparison.OrdinalIgnoreCase); 271_interactive = interactive || string.Equals("true", _data.GlobalPropertiesDictionary.GetProperty("NuGetInteractive")?.EvaluatedValue, StringComparison.OrdinalIgnoreCase); 810int hash = (configurationData != null) ? configurationData.EvaluatedValue.GetHashCode() : 0; 817propertyDump += $"{entry.Name}={entry.EvaluatedValue}\n";
Instance\ProjectInstance.cs (8)
1439if (existingProperty != null && !string.Equals(existingProperty.EvaluatedValue, attemptedValue, StringComparison.Ordinal)) 1441_loggingContext.LogComment(MessageImportance.Low, messageResourceName, name, attemptedValue, existingProperty.EvaluatedValue); 2400if (!_globalProperties.Contains(property.Name) || !String.Equals(_globalProperties[property.Name].EvaluatedValue, property.EvaluatedValue, StringComparison.OrdinalIgnoreCase)) 2402if ((!_environmentVariableProperties.Contains(property.Name) || !String.Equals(_environmentVariableProperties[property.Name].EvaluatedValue, property.EvaluatedValue, StringComparison.OrdinalIgnoreCase)) 2404&& (!_sdkResolvedEnvironmentVariableProperties.Contains(property.Name) || !String.Equals(_sdkResolvedEnvironmentVariableProperties[property.Name].EvaluatedValue, property.EvaluatedValue, StringComparison.OrdinalIgnoreCase)))
Instance\ProjectPropertyInstance.cs (1)
309property.Value = EvaluatedValue;
Instance\TaskFactories\AssemblyTaskFactory.cs (3)
647string dotnetHostPath = getProperty(Constants.DotnetHostPathEnvVarName)?.EvaluatedValue; 648string netCoreSdkRoot = getProperty(Constants.NetCoreSdkRoot)?.EvaluatedValue?.TrimEnd('/', '\\'); 653string ridGraphPath = getProperty(Constants.RuntimeIdentifierGraphPath)?.EvaluatedValue;
Utilities\Utilities.cs (1)
555localAppData = localAppDataProp.EvaluatedValue;
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
MSBuild\ProjectFile\Extensions.cs (1)
90=> executedProject.GetProperty(propertyName)?.EvaluatedValue;