背景
随着时间的推移,我发现自己越来越多地转向NDepend来深入了解遗留应用程序的设计/实现。
问题
有没有JustMyCode办法永久配置NDepend(在项目级别)以简单地忽略 .NET Framework,而不是添加到 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 } 语境