本文整理汇总了C#中ProjectItem.GetMetadata方法的典型用法代码示例。如果您正苦于以下问题:C# ProjectItem.GetMetadata方法的具体用法?C# ProjectItem.GetMetadata怎么用?C# ProjectItem.GetMetadata使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ProjectItem
的用法示例。
在下文中一共展示了ProjectItem.GetMetadata方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetAttributeList
List<string> GetAttributeList(ProjectItem p)
{
List<string> keyn = new List<string>();
foreach (string n in p.MetadataNames)
{
string v = p.GetMetadata(n);
if (!string.IsNullOrEmpty(v) && !string.IsNullOrEmpty(p.GetMetadata(n)))
keyn.Add(string.Format( AnotherThemeTool.Strings.FormatTag0, n, p.GetMetadata(n) ));
}
return keyn;
}
示例2: AddItemToGroup
internal static void AddItemToGroup(MSBuild.BuildItemGroup group, ProjectItem item)
{
if (group == null)
throw new ArgumentNullException("group");
if (item == null)
throw new ArgumentNullException("item");
if (item.IsAddedToProject)
throw new ArgumentException("item is already added to project", "item");
MSBuild.BuildItem newItem = group.AddNewItem(item.ItemType.ToString(), item.Include, true);
foreach (string name in item.MetadataNames) {
newItem.SetMetadata(name, item.GetMetadata(name));
}
item.BuildItem = newItem;
Debug.Assert(item.IsAddedToProject);
}
示例3: GetMetaDictionary
Dictionary<string, string> GetMetaDictionary(ProjectItem p)
{
Dictionary<string,string> d = new Dictionary<string,string>();
foreach (string n in p.MetadataNames)
{
string v = p.GetMetadata(n);
if (n.ToLower()=="link") HasLink=true;
if (!string.IsNullOrEmpty(n) && !string.IsNullOrEmpty(v))
d.Add( n, v );
}
return d;
}