An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

[![.NET](https://github.com/aimenux/AzureWorkItemsClientDemo/actions/workflows/ci.yml/badge.svg)](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
```

![AzureWorkItemsClientDemo](Screenshots/AzureWorkItemsClientDemo.png)

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