我正在嘗試使用CppDepend獲取LCOM度量報告。我寫了下面的查詢 // <Name>TODO short description</Name>
from t in Application.Types
select new {t,t.LCOM, t.LCOMHS}
但是這個查詢給出的代碼中只有頭文件的表值。它不報告Cpp文件的值。 請幫忙,因爲我是新手這樣做。
我想知道是否有最佳方法來執行此類檢查。 我想看到所有返回任務(或任務,並沒有「異步」後綴) // <Name>Task type should be called with Async suffix</Name>
from m in Application.Methods
where m.ReturnType!= null && m.ReturnType.NameLike("Task") &&
我需要檢查名稱以「Repository」結尾的類型是否來自名爲「DefaultRepositoryBase」的基類。 我已經搜查,但我已經沒有能夠找到如何從一個已知類型得到ITYPE ...我怎樣才能做到這一點,然後把它傳遞給t.DerivesFrom(ITYPE) from t in Application.Types
where t.NameLike("Repository")
selec
我只是試圖加載SLN文件到Visual NDepend的和不斷收到此錯誤: Can't find the .NET assembly {AssemblyName} in specified folders. Has it been compiled properly? Is the NDepend project missing the containing folder of the .NET
我的某些庫出現以下錯誤。 Error!
Unresolved .NET Assembly
Can't find the .NET assembly {x} in specified folders.
Has it been compiled properly?
Is the NDepend project missing the containing folder of the .NET