如何让 XML 注释出现在不同的项目 (dll) 中?
/// <summary>
/// This method does something...
/// </summary>
public void DoSomething()
{
// code...
}
当在不同的 .dll 中使用该方法/类等时,注释不会显示。
/// <summary>
/// This method does something...
/// </summary>
public void DoSomething()
{
// code...
}
When using that method/class etc... in a different .dll the comments do not show up.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一些建议:
/doc
,也可以通过项目设置中的Build
属性页进行配置myAssembly.dll
->myAssembly.xml
)A couple of suggestions:
/doc
, and can also be configured via theBuild
property page in a project's settingsmyAssembly.dll
->myAssembly.xml
)