description: "Specialist for maintenance and creation of wikis and work items in Azure DevOps Boards — To manage wiki pages, create/update work items, and coordinate technical documentation" name: "AzureDevOps-Docs-Helper" tools: [vscode, execute, read, agent, edit, search, web, microsoft/azure-devops-mcp/core_get_identity_ids, microsoft/azure-devops-mcp/core_list_projects, microsoft/azure-devops-mcp/search_wiki, microsoft/azure-devops-mcp/search_workitem, microsoft/azure-devops-mcp/wiki_create_or_update_page, microsoft/azure-devops-mcp/wiki_get_page, microsoft/azure-devops-mcp/wiki_get_page_content, microsoft/azure-devops-mcp/wiki_get_wiki, microsoft/azure-devops-mcp/wiki_list_pages, microsoft/azure-devops-mcp/wiki_list_wikis, microsoft/azure-devops-mcp/wit_create_work_item, microsoft/azure-devops-mcp/wit_get_query, microsoft/azure-devops-mcp/wit_get_query_results_by_id, microsoft/azure-devops-mcp/wit_get_work_item, microsoft/azure-devops-mcp/wit_get_work_item_type, microsoft/azure-devops-mcp/wit_get_wo
I hereby claim:
- I am phenixita on github.
- I am miferrac (https://keybase.io/miferrac) on keybase.
- I have a public key ASC0RPO2SKn0y63BE-XjrsumEzYME5McY_XB1n0LLWD8sgo
To claim this, I am signing this object:
I hereby claim:
- I am phenixita on github.
- I am phenixita (https://keybase.io/phenixita) on keybase.
- I have a public key ASB47bKlLSrJh-xX4jfzJT-w6gnPtpdXviJA9jKqp-SlkAo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using 'main.bicep' | |
| param location = 'italynorth' | |
| param aksClusterName = 'aks-yt01' | |
| param agentPoolName = 'nodepool1' | |
| param kubernetesVersion = '1.31.8' | |
| param nodeCount = 1 | |
| param nodeVMSize = 'Standard_DS2_v2' | |
| param aadAdminGroupObjectIds = [ | |
| '9beb87c3-ec36-4b33-84b5-1efd0136e498' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| param location string = resourceGroup().location | |
| param aksClusterName string | |
| param agentPoolName string | |
| param kubernetesVersion string | |
| param nodeCount int | |
| param nodeVMSize string = 'Standard_DS2_v2' | |
| param aadAdminGroupObjectIds array | |
| param acrName string | |
| param aksIdentityName string | |
| param aksKubeletIdentityName string |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Definisci i parametri | |
| $organization = "micheleferracin" # Sostituisci con il nome della tua organizzazione | |
| $project = "Parts Unlimited" # Sostituisci con il nome del tuo progetto | |
| $pat = "YOUR PAT HERE" # with read work-item permission | |
| $openApiPat = "YOUR OPEN API TOKEN HERE" | |
| function Replace-ImageUrlsInMarkdown { | |
| param ( | |
| [string]$markdownFilePath, | |
| [string]$fixedFolder |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { AdapterDateFns } from "@mui/x-date-pickers/AdapterDateFns"; | |
| import { LocalizationProvider } from "@mui/x-date-pickers"; | |
| import Button from "@mui/material/Button"; | |
| import { Formik, Form } from "formik"; | |
| import * as React from "react"; | |
| import useFetchWithMsal from "../hooks/useFetchWithMsal"; | |
| import { protectedResources } from "../authConfig"; | |
| import { Stack } from "@mui/system"; | |
| import { DatePicker } from "@mui/x-date-pickers"; | |
| import TextField from "@mui/material/TextField"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dotnet tool install --global dotnet-coverage | |
| dotnet sonarscanner begin /k:"PROJECT_KEY" /d:sonar.host.url="http://localhost:9000" /d:sonar.cs.vscoveragexml.reportsPaths=coverage.xml /d:sonar.login="sqp_XXXXXXXXXXXXXX"; | |
| dotnet build --no-incremental | |
| dotnet-coverage collect "dotnet test" -f xml -o "coverage.xml"; |
NewerOlder