背景
随着时间的推移,我发现自己越来越多地转向NDepend来洞察遗留应用程序的设计/实现。
问题
与其将JustMyCode添加到CQL查询中,是否有一种方法可以永久地配置NDepend (在项目级别)来忽略.NET框架?我可能错了,但我非常肯定这个特性得到了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 }
上下文
发布于 2013-12-19 09:45:11
忽略.NET程序集的唯一两种方法是:
https://stackoverflow.com/questions/20643605
复制相似问题