我有一个带有几个C#类库的解决方案,它们是大型系统中的插件。该系统在Windows'中注册其插件。注册表中。我想要做的是以可以从编译的DLLS中提取的方式描述注册表项,然后将其放入文本(.reg)文件中,最好作为构建过程的一部分。
此类元数据是否有预定义属性?是否有可以提取它们的命令行工具或MSBuild任务?
答案 0 :(得分:1)
想象一下这个属性
[System.AttributeUsage(System.AttributeTargets.Class,
AllowMultiple = true) // Multiuse attribute.]
public class RegistryKey : System.Attribute
{
public string Name {get; private set;}
public string Type {get; private set;}
public string Data {get; private set;}
public RegistryKey(string name, string type, string data)
{
Name = name;
Type = type;
Data = data;
}
}
用这样的反射来消费它
var attrs = System.Attribute.GetCustomAttributes(typeof(MahClass));
foreach (var attr in attrs)
{
if (attr is RegistryKey)
{
var name = attr.Name;
...
}
}