{"id":22837199,"url":"https://github.com/cake-contrib/cake-ndepend","last_synced_at":"2025-10-17T22:58:48.790Z","repository":{"id":48469443,"uuid":"112850340","full_name":"cake-contrib/cake-ndepend","owner":"cake-contrib","description":"NDepend addin for Cake","archived":false,"fork":false,"pushed_at":"2021-07-24T09:52:20.000Z","size":18160,"stargazers_count":7,"open_issues_count":1,"forks_count":5,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-07-22T14:55:09.381Z","etag":null,"topics":["cake","ndepend"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cake-contrib.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-12-02T14:52:47.000Z","updated_at":"2019-11-10T11:02:26.000Z","dependencies_parsed_at":"2022-08-24T14:38:53.599Z","dependency_job_id":null,"html_url":"https://github.com/cake-contrib/cake-ndepend","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/cake-contrib/cake-ndepend","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cake-contrib%2Fcake-ndepend","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cake-contrib%2Fcake-ndepend/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cake-contrib%2Fcake-ndepend/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cake-contrib%2Fcake-ndepend/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cake-contrib","download_url":"https://codeload.github.com/cake-contrib/cake-ndepend/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cake-contrib%2Fcake-ndepend/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267807724,"owners_count":24147352,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-30T02:00:09.044Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cake","ndepend"],"created_at":"2024-12-12T23:15:58.452Z","updated_at":"2025-10-17T22:58:43.758Z","avatar_url":"https://github.com/cake-contrib.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cake.NDepend\n\nA Cake AddIn that extends the `NDepend.Console` [command line tool](https://www.ndepend.com/docs/ndepend-console).\n\n[![Build status](https://ci.appveyor.com/api/projects/status/666egh2grlita76w?svg=true)](https://ci.appveyor.com/project/joaoasrosa/cake-ndepend)\n[![NuGet](https://img.shields.io/nuget/v/Cake.NDepend.svg)](https://www.nuget.org/packages/Cake.NDepend)\n[![cakebuild.net](https://img.shields.io/badge/WWW-cakebuild.net-blue.svg)](http://cakebuild.net/)\n\n## Usage\n\n### Prerequisites\nThe addin is based on the `NDepend.Console` command line tool. Before using it, make sure the NDepend installation location is part of the environment variable `PATH`, and you have a valid license.\n\n### Including the addin\n\nTo include the addin, add the following to the beginning of the `cake` script:\n```\n#addin \"Cake.NDepend\"\n```\n\n### Use the addin\n\nTo use the addin, you need to configure the settings and run the `NDepend.Console` alias:\n```\n#addin \"Cake.NDepend\"\n...\nTask(\"NDepend-Analyse\")\n    .Description(\"Runs the NDepend analyser on the project.\")\n    .Does(() =\u003e \n    {\n        var settings = new NDependSettings\n        {\n            ProjectPath = ndependProjectFullPath // Full path to the NDepend project.\n        };\n\n        NDependAnalyse(settings);\n    });\n...\n```\n\n### Settings\n\nThe `NDependSettings` have *one* mandatory option, `ProjectPath`. The remain options are optional, however, there are certain option combinations that need to be used together. For more information about the usage read the `NDepend.Console` [documentation](https://www.ndepend.com/docs/ndepend-console).\n\n\n## Built With\n\n* [.NET Core 2.0](https://www.microsoft.com/net/download) - The Framework\n* [NuGet](https://www.nuget.org/) - Dependency Management\n* [Cake](http://cakebuild.net/) - Cross Platform Build Automation System\n* [AppVeyor](https://www.appveyor.com/) - Continuous Integration \u0026 Delivery Service\n* [NDepend](https://www.ndepend.com/) - Code Quality Platform\n\n## Contributing\n\nPlease read [CONTRIBUTING.md](https://github.com/joaoasrosa/cake-ndepend/blob/master/CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us.\n\n## Versioning\n\nWe use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/joaoasrosa/pullrequests-viewer/tags). For the release notes, see the [release notes](https://github.com/joaoasrosa/pullrequests-viewer/blob/master/ReleaseNotes.md).\n\n## Authors\n\n* **João Rosa** - *Initial work* - [joaoasrosa](https://github.com/joaoasrosa) [![Follow @joaoasrosa](https://img.shields.io/badge/Twitter-Follow%20%40joaoasrosa-blue.svg)](https://twitter.com/intent/follow?screen_name=joaoasrosa) \n\nSee also the list of [contributors](https://github.com/joaoasrosa/cake-ndepend/contributors) who participated in this project.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details\n\n## Project Support\n\nThis project is supported by [NDepend](https://www.ndepend.com/) with 2 licenses.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcake-contrib%2Fcake-ndepend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcake-contrib%2Fcake-ndepend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcake-contrib%2Fcake-ndepend/lists"}