https://github.com/aimenux/azureworkitemsclientdemo
Using various ways in order to get info about azure work items
https://github.com/aimenux/azureworkitemsclientdemo
azure-devops-api bullseye console-app net60 vs22 work-items
Last synced: about 1 month ago
JSON representation
Using various ways in order to get info about azure work items
- Host: GitHub
- URL: https://github.com/aimenux/azureworkitemsclientdemo
- Owner: aimenux
- Created: 2022-02-04T13:50:41.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-04T16:37:23.000Z (over 4 years ago)
- Last Synced: 2025-02-27T01:54:34.597Z (over 1 year ago)
- Topics: azure-devops-api, bullseye, console-app, net60, vs22, work-items
- Language: C#
- Homepage:
- Size: 56.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://github.com/aimenux/AzureWorkItemsClientDemo/actions/workflows/ci.yml)
# AzureWorkItemsClientDemo
```
Using various ways in order to get info about azure work items
```
In this demo, i m using two ways in order to get info about azure work items.
>
> :one: Using [SDK LIBs](https://docs.microsoft.com/en-us/azure/devops/integrate/concepts/dotnet-client-libraries?view=azure-devops)
>
> :two: Using [REST APIs](https://docs.microsoft.com/en-us/rest/api/azure/devops)
>
>
Filtering work items is done via a configurable query. If missing in config file, this query is by default used :
>
```sql
Select [System.Id], [System.Title], [System.State]
From WorkItems
Where [State] <> 'Closed'
Order By [System.CreatedDate] ASC
```

**`Tools`** : vs22, net 6.0, bullseye, azure devops sdk/rest api