你如何忽略NDepend中的.NET程序集?
背景
随着时间的推移,我发现自己越来越多地转向NDepend,以深入了解遗留应用程序的设计/实现。
题
不是将JustMyCode
添加到CQL查询中,是否有办法将NDepend(在项目级别)永久配置为简单地忽略.NET Framework? 我可能是错的,但我很确定这个功能是由NDepend v3支持的。
例
from t in Types where t.IsUsedBy ("MyCompany.MyProduct.MyAssemblyName") select new { t, t.NbILInstructions }
from t in JustMyCode.Types where t.IsUsedBy ("MyCompany.MyProduct.MyAssemblyName") select new { t, t.NbILInstructions }
CONTEXT
只有两种方法可以忽略.NET程序集:
上一篇: How do you ignore .NET assemblies in NDepend?
下一篇: Getting dependencies between assemblies programatically by NDepend APIs