Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 805 Bytes

README.md

File metadata and controls

31 lines (19 loc) · 805 Bytes

CsPurity

Usage

To run the application run the following from the repo's root directory, where <path/to/dir> is the path to a C# project whose files you want to analyze.

CsPurity --project CsPurity/ <path/to/dir>

Or if you want to pass only the paths to the file(s) to analyze, use the flag --files

CsPurity --project CsPurity/ --files <path/to/file1>  <path/to/file2> ...

If you want pass the content of one file as a string to the program, for instance by piping, use can use the --string flag.

For more information, see the help:

CsPurity --project /d/Melker/git-repos/masters-thesis/CsPurity/ --help

Development

To run tests, run dotnet test CsPurity/ from the repo's root directory.

Dependencies