recursion - Getting NDepend to recurse through an input directory finding all assemblies/source across multiple projects -
i using nant build script call ndepend required command line arguments.
<exec program="ndepend.console.exe" basedir="${ndependpath}"> <arg line="${ndependprojectfilepath} /indirs ${ndependindirs} /outdir ${ndependoutputdir}" /> </exec>
but looking ndepend recurse through subdirectories of specified 'input directory' assemblies listed in ndepend project file.
i used nant copy assemblies recursively specified folder , pointed ndepend input. method results in many missing metrics relating code itself.
any ideas how without listing explicit path of of assemblies (it large project); can metrics across whole solution specifying top level directory?
recursive through input directory find assemblies accross multiple project feature available from: ndepend start page >>> analyze .net assemblies in folders >>> direct/recursive child folders
thanks ndepend.api can programatically search assemblies on disk, fill ndepend project these assemblies, , run analysis create report. see:
Comments
Post a Comment