背景
随着时间的推移,我发现自己越来越多地转向 NDepend 来深入了解遗留应用程序的设计/实现。
问题
有没有一种方法可以永久配置 NDepend (在项目级别)以简单地忽略.NET Framework,而不是将JustMyCode
添加到CQL查询中?我可能错了,但我很确定 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