快速提问:如何访问Roslyn中MetadataReference
的“复制本地”属性?
此属性用于确定是否应在编译时在输出目录中复制引用(例如,系统库通常不会被复制)。
访问Properties
的{{1}}字段时(如下所示),没有这样的选项:
MetadataReference
但我可以看到其他选项,例如var reference = compilation.ExternalReferences[0];
reference.Properties.
,Aliases
和EmbedInteropTypes
。我试图将它转换为另一个引用类型,但仍然无法看到更多选项(因为您可以在Visual Studio中看到它们)。我错过了什么吗?