Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在构建我的项目时,我收到很多 PostSharp 警告,例如
POSTSHARP: postsharp warning LA0036: Missing optimization information on method '...'.
这是什么意思,我怎样才能摆脱它们?
有点晚了,但我可能已经找到了解决方案。我在引发警告的项目文件中添加了以下标记:
<PropertyGroup> <UsePostSharp>true</UsePostSharp> </PropertyGroup>
这解决了这个问题。
正如消息本身所说,包含方面的项目也必须由 PostSharp 处理。