本文整理汇总了C#中Microsoft.Build.BuildEngine.BuildItem.GetEvaluatedMetadataEscaped方法的典型用法代码示例。如果您正苦于以下问题:C# BuildItem.GetEvaluatedMetadataEscaped方法的具体用法?C# BuildItem.GetEvaluatedMetadataEscaped怎么用?C# BuildItem.GetEvaluatedMetadataEscaped使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.Build.BuildEngine.BuildItem
的用法示例。
在下文中一共展示了BuildItem.GetEvaluatedMetadataEscaped方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: foreach
/// <summary>
/// Gets the values of the specified metadata for the given item.
/// The keys in the dictionary returned may be qualified and/or unqualified, exactly
/// as they are found in the metadata reference.
/// For example if %(x) is found, the key is "x", if %(z.x) is found, the key is "z.x".
/// This dictionary in each bucket is used by Expander to expand exactly the same metadata references, so
/// %(x) is expanded using the key "x", and %(z.x) is expanded using the key "z.x".
/// </summary>
/// <returns>the metadata values</returns>
private static Dictionary<string, string> GetItemMetadataValues
(
XmlNode parentNode,
BuildItem item,
Dictionary<string, MetadataReference> consumedMetadataReferences
)
{
Dictionary<string, string> itemMetadataValues = new Dictionary<string, string>(consumedMetadataReferences.Count, StringComparer.OrdinalIgnoreCase);
foreach (KeyValuePair<string, MetadataReference> consumedMetadataReference in consumedMetadataReferences)
{
string metadataQualifiedName = consumedMetadataReference.Key;
string metadataItemName = consumedMetadataReference.Value.itemName;
string metadataName = consumedMetadataReference.Value.metadataName;
if (
(metadataItemName != null) &&
(0 != String.Compare(item.Name, metadataItemName, StringComparison.OrdinalIgnoreCase))
)
{
itemMetadataValues[metadataQualifiedName] = String.Empty;
}
else
{
try
{
itemMetadataValues[metadataQualifiedName] = item.GetEvaluatedMetadataEscaped(metadataName);
}
catch (InvalidOperationException e)
{
ProjectErrorUtilities.VerifyThrowInvalidProject(false, parentNode,
"CannotEvaluateItemMetadata", metadataName, e.Message);
}
}
}
return itemMetadataValues;
}