Ndepend CQL to query types out of assembly wildcard

Posted by icelava on Stack Overflow See other posts from Stack Overflow or by icelava
Published on 2010-03-18T01:59:16Z Indexed on 2010/03/18 2:01 UTC
Read the original article Hit count: 582

Filed under:
|

In order to determine what low-level framework types a web application is directly using, one has to define each and every assembly involved.

SELECT TYPES FROM ASSEMBLIES
"Company.System.Framework",
"Company.System.Framework.ReferenceLookup",
"Company.System.Framework.Web",
"Company.System.Framework.Security",
"Company.System.Framework.Logging",
"Company.System.Framework.DMS"
WHERE IsDirectlyUsedBy "WebAssembly"

I cannot find any syntax to wildcard the list of assemblies. Is there no way to shortcut this? We have a lot of framework level assemblies.

i.e. Company.System.Framework.*

© Stack Overflow or respective owner

Related posts about ndepend

Related posts about cql