{"id":21811168,"url":"https://github.com/mathieumack/azuredevops.restapi.netsdk.helper","last_synced_at":"2026-05-09T01:31:59.224Z","repository":{"id":195861129,"uuid":"662188227","full_name":"mathieumack/AzureDevOps.RestAPI.NetSDK.Helper","owner":"mathieumack","description":null,"archived":false,"fork":false,"pushed_at":"2024-11-20T22:10:42.000Z","size":46,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-29T23:36:25.992Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","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/mathieumack.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-07-04T14:43:14.000Z","updated_at":"2023-07-04T15:00:04.000Z","dependencies_parsed_at":"2023-09-19T22:42:37.885Z","dependency_job_id":"ad3a48e0-7d9f-47d3-afb3-7e0a984d1963","html_url":"https://github.com/mathieumack/AzureDevOps.RestAPI.NetSDK.Helper","commit_stats":null,"previous_names":["mathieumack/azuredevops.restapi.netsdk.helper"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mathieumack/AzureDevOps.RestAPI.NetSDK.Helper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathieumack%2FAzureDevOps.RestAPI.NetSDK.Helper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathieumack%2FAzureDevOps.RestAPI.NetSDK.Helper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathieumack%2FAzureDevOps.RestAPI.NetSDK.Helper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathieumack%2FAzureDevOps.RestAPI.NetSDK.Helper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mathieumack","download_url":"https://codeload.github.com/mathieumack/AzureDevOps.RestAPI.NetSDK.Helper/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathieumack%2FAzureDevOps.RestAPI.NetSDK.Helper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32804091,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"ssl_error","status_checked_at":"2026-05-08T08:22:45.650Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-11-27T13:43:36.777Z","updated_at":"2026-05-09T01:31:59.208Z","avatar_url":"https://github.com/mathieumack.png","language":"C#","funding_links":["https://www.buymeacoffee.com/mathieumack"],"categories":[],"sub_categories":[],"readme":"# AzureDevOps.RestAPI.NetSDK.Helper\nHelper tools for the Azure DevOps rest api .net SDK\n\n==========\n\n# Onboarding Instructions \n\n## Installation\n\n1. Add nuget package: \n\n\u003e Install-Package AzureDevOps.RestAPI.NetSDK.Helper\n\n2. In your application, you must initialize the helper with your Azure DevOps credentials. Open your program.cs or Startup.cs and add the following code:\n\n```csharp\n    builder.Services.RegisterVssConnection(\"https://dev.azure.com/{organization}\", \"{PAT}\");\n```\n\nA VssConnection object is now registered in the dependency injection container. You can now inject it in your services or controllers.\n\n```csharp\n    public class MyService\n    {\n        private readonly VssConnection _vssConnection;\n\n        public MyService(VssConnection vssConnection)\n        {\n            _vssConnection = vssConnection;\n        }\n    }\n```\n\n## Azure DevOps helpers\nHere is the list of helpers available in the package:\n\n| Domain | Function | Description | Status |\n| ------ | ------ | ------ | ------ |\n| Projects | GetProjectList(...) | Get all projects | :white_check_mark: |\n| Backlog | GetQueries(...) | Returns all queries available in a project | :white_check_mark: |\n| Backlog | GetQueryResults(...) | Execute a query and retrive results | :white_check_mark: |\n| Backlog | DownloadAttachment(...) | Download an attachment for a specific work item | :calendar: |\n| Wiki | GetWikis() | Retreive all available wikis | :white_check_mark: |\n| Wiki | GetWiki(...) | Get a Wiki description by identifier | :white_check_mark: |\n| Wiki | GetWikiPages(...) | Retreive all pages for a dedicated Wiki | :white_check_mark: |\n| Wiki | GetWikiPageText(...) | Retreive string content for a wiki page | :white_check_mark: |\n\n:white_check_mark: : Available\n\n:calendar: : Planned in the roadmap\n\nYou can find more details and samples in the Wiki.\n\n# IC\n[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=mathieumack_AzureDevOps.RestAPI.NetSDK.Helper\u0026metric=alert_status)](https://sonarcloud.io/summary/new_code?id=mathieumack_AzureDevOps.RestAPI.NetSDK.Helper)\n[![.NET](https://github.com/mathieumack/AzureDevOps.RestAPI.NetSDK.Helper/actions/workflows/ci.yml/badge.svg)](https://github.com/mathieumack/AzureDevOps.RestAPI.NetSDK.Helper/actions/workflows/ci.yml)\n[![NuGet package](https://buildstats.info/nuget/AzureDevOps.RestAPI.NetSDK.Helper?includePreReleases=true)](https://nuget.org/packages/AzureDevOps.RestAPI.NetSDK.Helper)\n\n# Documentation : I want more\n\nDo not hesitate to check unit tests on the solution. It's a good way to check how transformations are tested.\n\nAlso, to get more samples, go to the [Wiki](https://github.com/mathieumack/AzureDevOps.RestAPI.NetSDK.Helper/wiki). \n\nDo not hesitate to contribute.\n\n\n# Support / Contribute\nIf you have any questions, problems or suggestions, create an issue or fork the project and create a Pull Request.\n\nYou want more ? Feel free to create an issue or contribute by adding new functionnalities by forking the project and create a pull request.\n\nAnd if you like this project, don't forget to star it !\n\nYou can also support me with a coffee :\n\n[![\"Buy Me A Coffee\"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/mathieumack)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmathieumack%2Fazuredevops.restapi.netsdk.helper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmathieumack%2Fazuredevops.restapi.netsdk.helper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmathieumack%2Fazuredevops.restapi.netsdk.helper/lists"}