├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── issue_template.md └── workflows │ ├── codeql.yml │ └── console-app-dotnet-core.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── docs ├── Auth-Device-code-flow.md ├── Images │ ├── AdvancedSettings.png │ ├── AppDetails.png │ ├── ChooseAPI.png │ └── ChoosePermission.png ├── RunApplication.md └── TemplateBuilder.md ├── index.html ├── src ├── .gitignore ├── ADOGenerator.sln ├── ADOGenerator │ ├── ADOGenerator.csproj │ ├── IServices │ │ ├── IAuthService.cs │ │ ├── IExtractorService.cs │ │ ├── IInitService.cs │ │ ├── IProjectService.cs │ │ └── ITemplateService.cs │ ├── Models │ │ ├── AccessDetails.cs │ │ ├── Accounts.cs │ │ ├── CreateZips.cs │ │ ├── Default.cs │ │ ├── Email.cs │ │ ├── ErrorMessages.cs │ │ ├── ExtractorAnalysis.cs │ │ ├── GitHubAccessDetails.cs │ │ ├── LoginModel.cs │ │ ├── ProfileDetails.cs │ │ ├── Project.cs │ │ ├── ProjectList.cs │ │ ├── Query.cs │ │ ├── ReadUser.cs │ │ └── TemplateSelection.cs │ ├── PreSetting │ │ ├── BoardColumns.json │ │ ├── CreateQueryFolder.json │ │ ├── DemoExtensions.json │ │ ├── GitHubEndPoint.json │ │ ├── ImportSourceCode.json │ │ ├── ProjectSettings.json │ │ ├── ProjectTemplate.json │ │ ├── ServiceEndPoint.json │ │ ├── TeamArea.json │ │ ├── UpdateCardFields.json │ │ └── UpdateCardStyles.json │ ├── Program.cs │ ├── ServiceExtensions.cs │ ├── Services │ │ ├── AuthService.cs │ │ ├── ExtractorService.cs │ │ ├── Init.cs │ │ ├── ProjectService.cs │ │ └── TemplateService.cs │ ├── Templates │ │ ├── AC-AzureSentinel │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── AzureSentinelDeployment Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ ├── Feature.json │ │ │ │ ├── Task.json │ │ │ │ └── User Story.json │ │ ├── AC-NIST800171Rev2 │ │ │ ├── Dashboard │ │ │ │ └── Queries │ │ │ │ │ ├── All items, all states.json │ │ │ │ │ ├── Assigned to me.json │ │ │ │ │ ├── Followed work items.json │ │ │ │ │ └── Workload Template.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── NIST 800-171 Template Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Task.json │ │ │ │ └── User Story.json │ │ ├── AC-SapOnAzure │ │ │ ├── Dashboard │ │ │ │ ├── Dashboard.json │ │ │ │ └── Queries │ │ │ │ │ ├── Assigned to me.json │ │ │ │ │ ├── Followed work items.json │ │ │ │ │ ├── SAP Integration and Data.json │ │ │ │ │ ├── SAP on HANA.json │ │ │ │ │ ├── SAP on MaxDB.json │ │ │ │ │ ├── SAP on Oracle.json │ │ │ │ │ ├── SAP on SAP ASE.json │ │ │ │ │ └── SAP on SQL Server.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── SAP on Azure quick-start guide Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ ├── Task.json │ │ │ │ └── User Story.json │ │ ├── AC-WVDGuidance │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Teams.json │ │ │ │ └── WVD Guidance Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ └── WorkItems │ │ │ │ ├── Task.json │ │ │ │ └── User Story.json │ │ ├── CAF-ADO-Strategy-Plan-Ready-Governance │ │ │ ├── Dashboard │ │ │ │ └── Queries │ │ │ │ │ ├── All Tasks.json │ │ │ │ │ ├── All items, all states.json │ │ │ │ │ ├── Assigned to me.json │ │ │ │ │ ├── Followed work items.json │ │ │ │ │ └── Workload Template.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── CAF ADO Strategy-Plan-Ready-Gov Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Task.json │ │ │ │ ├── Test Plan.json │ │ │ │ └── User Story.json │ │ ├── CAF-AKS_CAF │ │ │ ├── Dashboard │ │ │ │ ├── Dashboard.json │ │ │ │ └── Queries │ │ │ │ │ ├── AKS_CAF_Query.json │ │ │ │ │ ├── Assigned to me.json │ │ │ │ │ ├── Followed work items.json │ │ │ │ │ └── WVD-AKA.json │ │ │ ├── Extensions.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── AKA_Project Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Task.json │ │ │ │ └── User Story.json │ │ ├── CAF-AzureGovernance │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Azure Governance - CAF Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Azure Governance Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Task.json │ │ │ │ └── User Story.json │ │ ├── CAF-CloudAdoptionPlan │ │ │ ├── Dashboard │ │ │ │ └── Queries │ │ │ │ │ ├── All items, all states.json │ │ │ │ │ ├── Assigned to me.json │ │ │ │ │ ├── Followed work items.json │ │ │ │ │ └── Workload Template.json │ │ │ ├── Images │ │ │ │ ├── Overview.png │ │ │ │ └── Website.PNG │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Cloud Adoption Plan Master Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Task.json │ │ │ │ └── User Story.json │ │ ├── CAF-KnowledgeMining │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Knowledge Mining Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Task.json │ │ │ │ └── User Story.json │ │ ├── CAF-ModernDataAnalytics │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Modern Data Analytics Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Task.json │ │ │ │ └── User Story.json │ │ ├── CAF-ModernDataWarehouse │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Modern Data Warehouse Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Task.json │ │ │ │ └── User Story.json │ │ ├── CAF-ModernIOT │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Modern IOT Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Task.json │ │ │ │ └── User Story.json │ │ ├── CAF-RetailRecommender-SolutionAccelerator │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Retail Recommender - Solution Accelerator Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Task.json │ │ │ │ └── User Story.json │ │ ├── CAF-SQL_Migration │ │ │ ├── Dashboard │ │ │ │ ├── Dashboard.json │ │ │ │ └── Queries │ │ │ │ │ ├── Assigned to me.json │ │ │ │ │ └── Followed work items.json │ │ │ ├── Extensions.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── SQL Proj - Azure BG Test Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Task.json │ │ │ │ └── User Story.json │ │ ├── CAF-SecureResearch │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Secure Research Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Task.json │ │ │ │ └── User Story.json │ │ ├── CAF-ServerMigration │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── SQL Proj - Azure BG Test Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Server_Migration_Project Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Task.json │ │ │ │ └── User Story.json │ │ ├── CAF-UnifiedDataGovernance │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Teams.json │ │ │ │ └── Unified Data Governance Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Task.json │ │ │ │ └── User Story.json │ │ ├── CAF-WindowsVirtualDesktop │ │ │ ├── Dashboard │ │ │ │ ├── Dashboard.json │ │ │ │ └── Queries │ │ │ │ │ ├── All Workitems.json │ │ │ │ │ ├── Assigned to me.json │ │ │ │ │ └── Followed work items.json │ │ │ ├── Extensions.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Teams.json │ │ │ │ ├── WVD-CAF-Project-Template Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Windows Virtual Desktop Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Task.json │ │ │ │ └── User Story.json │ │ ├── CreateProject.json │ │ ├── CreateWiki.json │ │ ├── DL-AKS │ │ │ ├── BuildDefinitions │ │ │ │ ├── AKS.json │ │ │ │ └── MyHealthAKSbuild-YAML.json │ │ │ ├── Dashboard │ │ │ │ └── Queries │ │ │ │ │ ├── All Work Items.json │ │ │ │ │ ├── Epic.json │ │ │ │ │ ├── Features.json │ │ │ │ │ ├── Product Backlog Items.json │ │ │ │ │ └── Tasks.json │ │ │ ├── EnableEpic.json │ │ │ ├── Extensions.json │ │ │ ├── Images │ │ │ │ ├── AKS.png │ │ │ │ ├── aksdashboard.png │ │ │ │ ├── finalresult.png │ │ │ │ ├── update_CD3.png │ │ │ │ └── updateprocessbd.png │ │ │ ├── ImportSourceCode │ │ │ │ └── AKS.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ReleaseDefinitions │ │ │ │ └── AKS.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── AKS-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Azure Kubernetes Service Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Team1 │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Team2 │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Product Backlog Item.json │ │ │ │ └── Task.json │ │ ├── DL-Ansible │ │ │ ├── BuildDefinitions │ │ │ │ ├── Ansible-CI-YAML.json │ │ │ │ └── Ansible-CI.json │ │ │ ├── Extensions.json │ │ │ ├── Images │ │ │ │ ├── browseweb.png │ │ │ │ ├── cd-queue.gif │ │ │ │ ├── ci-queue.gif │ │ │ │ ├── logintosite.png │ │ │ │ └── playbook.png │ │ │ ├── ImportSourceCode │ │ │ │ └── SmartHotel360-CouponManagement.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ReleaseDefinitions │ │ │ │ └── Ansible.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── SmartHotel360-CouponManagement.json │ │ │ └── Teams │ │ │ │ ├── Ansible Team │ │ │ │ ├── BoardColumns.json │ │ │ │ ├── BoardRows.json │ │ │ │ ├── CardFields.json │ │ │ │ ├── CardStyles.json │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ ├── DL-AzureFunctions │ │ │ ├── BuildDefinitions │ │ │ │ ├── AzureFunctions_CI-YAML.json │ │ │ │ └── AzureFunctions_CI.json │ │ │ ├── EnableEpic.json │ │ │ ├── Images │ │ │ │ ├── createfunctionapp.png │ │ │ │ ├── deploysite.png │ │ │ │ ├── projectcreation.png │ │ │ │ └── pulwebsite.png │ │ │ ├── ImportSourceCode │ │ │ │ └── AzureFunctions.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ReleaseDefinitions │ │ │ │ └── AzureFunctions_CD.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── AzureFunctions-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Azure Functions Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Team1 │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Team2 │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ └── Feature.json │ │ ├── DL-DeploymentGroups │ │ │ ├── BuildDefinitions │ │ │ │ └── DeploymentGroups.json │ │ │ ├── Dashboard │ │ │ │ ├── Dashboard.json │ │ │ │ └── Queries │ │ │ │ │ ├── All Work Items.json │ │ │ │ │ ├── Epic.json │ │ │ │ │ ├── Features.json │ │ │ │ │ ├── Product Backlog Items.json │ │ │ │ │ ├── Tasks.json │ │ │ │ │ ├── UnfinishedWork.json │ │ │ │ │ └── Work in Progress.json │ │ │ ├── EnableEpic.json │ │ │ ├── Images │ │ │ │ ├── application.png │ │ │ │ ├── dgscript.png │ │ │ │ └── differentphases.png │ │ │ ├── ImportSourceCode │ │ │ │ └── DeploymentGroup.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ReleaseDefinitions │ │ │ │ └── DeploymentGroups.json │ │ │ ├── ServiceEndPoints │ │ │ │ └── DeploymentGroup - code.json │ │ │ ├── TeamArea.json │ │ │ └── Teams │ │ │ │ ├── Deployment Group Team │ │ │ │ ├── BoardColumns.json │ │ │ │ ├── BoardRows.json │ │ │ │ ├── CardFields.json │ │ │ │ ├── CardStyles.json │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Team1 │ │ │ │ ├── BoardColumns.json │ │ │ │ ├── BoardRows.json │ │ │ │ ├── CardFields.json │ │ │ │ ├── CardStyles.json │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Team2 │ │ │ │ ├── BoardColumns.json │ │ │ │ ├── BoardRows.json │ │ │ │ ├── CardFields.json │ │ │ │ ├── CardStyles.json │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ ├── DL-Docker │ │ │ ├── BuildDefinitions │ │ │ │ ├── Docker.json │ │ │ │ └── MHCDockerbuild-YAML.json │ │ │ ├── Dashboard │ │ │ │ ├── Dashboard.json │ │ │ │ └── Queries │ │ │ │ │ ├── All Work Items.json │ │ │ │ │ ├── Epic.json │ │ │ │ │ ├── Features.json │ │ │ │ │ ├── Product Backlog Items.json │ │ │ │ │ └── Tasks.json │ │ │ ├── EnableEpic.json │ │ │ ├── Images │ │ │ │ ├── buildresult.png │ │ │ │ ├── buildtasks.png │ │ │ │ ├── finalresult.png │ │ │ │ └── release.png │ │ │ ├── ImportSourceCode │ │ │ │ └── Docker.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ReleaseDefinitions │ │ │ │ └── Docker.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── Docker-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Docker Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Team1 │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Team2 │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Product Backlog Item.json │ │ │ │ └── Task.json │ │ ├── DL-Keyvault │ │ │ ├── BuildDefinitions │ │ │ │ ├── SmartHotel-CouponManagement-CI.json │ │ │ │ └── azure-key-vault.json │ │ │ ├── Extensions.json │ │ │ ├── ImportSourceCode │ │ │ │ └── azure-key-vault.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ReleaseDefinitions │ │ │ │ └── SmartHotel-CouponManagement-CD.json │ │ │ ├── ServiceEndpoints │ │ │ │ ├── Azure-MSDN1.json │ │ │ │ ├── GitHub-EndPoint.json │ │ │ │ ├── GitHubConnection.json │ │ │ │ └── azure-key-vault-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── SmartHotel-CouponManagement Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ └── User Story.json │ │ ├── DL-LaunchDarkly │ │ │ ├── BuildDefinitions │ │ │ │ ├── LaunchDarkly-CI-YAML.json │ │ │ │ └── LaunchDarkly.json │ │ │ ├── Extensions.json │ │ │ ├── Images │ │ │ │ ├── CD.png │ │ │ │ ├── browseapp.png │ │ │ │ └── buildandrelease.gif │ │ │ ├── ImportSourceCode │ │ │ │ └── LaunchDarkly.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ReleaseDefinitions │ │ │ │ └── LaunchDarkly.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── LaunchDarkly-code.json │ │ │ └── UerStoriesfromTemplate.json │ │ ├── DL-MachineLearning │ │ │ ├── BuildDefinitions │ │ │ │ └── DevOps-for-AI.json │ │ │ ├── Images │ │ │ │ ├── CI.png │ │ │ │ ├── Items.png │ │ │ │ ├── aml.png │ │ │ │ └── workflow.png │ │ │ ├── ImportSourceCode │ │ │ │ └── DevOps-for-AI.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ReleaseDefinitions │ │ │ │ └── DevOps-for-AI.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── DevOps-for-AI.json │ │ │ ├── TeamArea.json │ │ │ └── Teams.json │ │ ├── DL-Octopus │ │ │ ├── BuildDefinitions │ │ │ │ └── Octopus.json │ │ │ ├── Dashboard │ │ │ │ ├── Dashboard.json │ │ │ │ └── Queries │ │ │ │ │ ├── All Work Items.json │ │ │ │ │ ├── Epic.json │ │ │ │ │ ├── Features.json │ │ │ │ │ ├── Product Backlog Items.json │ │ │ │ │ └── Tasks.json │ │ │ ├── EnableEpic.json │ │ │ ├── Extensions.json │ │ │ ├── Images │ │ │ │ ├── AccountOctopusDeploy.png │ │ │ │ ├── BuildAzureDevOpsServices1.png │ │ │ │ ├── OctopusDeploy.png │ │ │ │ └── PartsUnlimited.png │ │ │ ├── ImportSourceCode │ │ │ │ └── Octopus.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ ├── Octopus-code.json │ │ │ │ └── Octopus.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Octopus Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Team1 │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Team2 │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Product Backlog Item.json │ │ │ │ └── Task.json │ │ ├── DL-PHP │ │ │ ├── BuildDefinitions │ │ │ │ ├── PHP.json │ │ │ │ └── php-yaml.json │ │ │ ├── Dashboard │ │ │ │ ├── Dashboard.json │ │ │ │ └── Queries │ │ │ │ │ ├── All Work Items.json │ │ │ │ │ ├── Epic.json │ │ │ │ │ ├── Features.json │ │ │ │ │ ├── Product Backlog Items.json │ │ │ │ │ └── Tasks.json │ │ │ ├── ImportSourceCode │ │ │ │ └── PHP.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ReleaseDefinitions │ │ │ │ └── PHP.json │ │ │ ├── ServiceEndpoints │ │ │ │ ├── ARM-Subscription.json │ │ │ │ ├── GitHub-018337e3-EndPoint.json │ │ │ │ └── PHP-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Team1 │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Team2 │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Teams.json │ │ │ │ └── php Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Product Backlog Item.json │ │ │ │ └── Task.json │ │ ├── DL-Python │ │ │ ├── BuildDefinitions │ │ │ │ ├── Python.json │ │ │ │ └── PythonDjango-yaml.json │ │ │ ├── Dashboard │ │ │ │ └── Queries │ │ │ │ │ ├── All Work Items.json │ │ │ │ │ ├── Epic.json │ │ │ │ │ ├── Features.json │ │ │ │ │ ├── Product Backlog Items.json │ │ │ │ │ └── Tasks.json │ │ │ ├── EnableEpic.json │ │ │ ├── Images │ │ │ │ ├── build-progress.gif │ │ │ │ ├── cd-tasks.png │ │ │ │ ├── ci-pipeline.png │ │ │ │ ├── release-output.gif │ │ │ │ └── release-progress.gif │ │ │ ├── ImportSourceCode │ │ │ │ └── PythonDjango.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ReleaseDefinitions │ │ │ │ └── Python-CD.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── Python-code.json │ │ │ ├── TeamArea.json │ │ │ └── Teams │ │ │ │ ├── Python Team │ │ │ │ ├── BoardColumns.json │ │ │ │ ├── BoardRows.json │ │ │ │ ├── CardFields.json │ │ │ │ ├── CardStyles.json │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Team1 │ │ │ │ ├── BoardColumns.json │ │ │ │ ├── BoardRows.json │ │ │ │ ├── CardFields.json │ │ │ │ ├── CardStyles.json │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Team2 │ │ │ │ ├── BoardColumns.json │ │ │ │ ├── BoardRows.json │ │ │ │ ├── CardFields.json │ │ │ │ ├── CardStyles.json │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ ├── DL-ReleaseGates │ │ │ ├── BuildDefinitions │ │ │ │ ├── PartsUnlimited-CI-YAML.json │ │ │ │ └── PartsUnlimited-CI.json │ │ │ ├── Dashboard │ │ │ │ └── Queries │ │ │ │ │ └── Bugs.json │ │ │ ├── EnableEpic.json │ │ │ ├── Images │ │ │ │ ├── qam.png │ │ │ │ ├── querywi.png │ │ │ │ └── timeout.png │ │ │ ├── ImportSourceCode │ │ │ │ └── PartsUnlimited.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ReleaseDefinitions │ │ │ │ └── PartsUnlimited-CD.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── PartsUnlimited-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── ReleaseGates Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Team1 │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Team2 │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ └── Bug.json │ │ ├── DL-Selenium │ │ │ ├── BuildDefinitions │ │ │ │ ├── Selenium-YAML.json │ │ │ │ └── Selenium.json │ │ │ ├── Dashboard │ │ │ │ └── Queries │ │ │ │ │ ├── All Work Items.json │ │ │ │ │ ├── Epic.json │ │ │ │ │ ├── Features.json │ │ │ │ │ ├── Product Backlog Items.json │ │ │ │ │ └── Tasks.json │ │ │ ├── EnableEpic.json │ │ │ ├── Images │ │ │ │ ├── Buildsuccess.png │ │ │ │ ├── dev.png │ │ │ │ ├── seleniumtest.png │ │ │ │ └── testsuccess.png │ │ │ ├── ImportSourceCode │ │ │ │ └── Selenium.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ReleaseDefinitions │ │ │ │ └── Selenium.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── Selenium-code.json │ │ │ └── Teams │ │ │ │ └── Teams.json │ │ ├── DL-SonarQube │ │ │ ├── BuildDefinitions │ │ │ │ ├── SonarQube-CI.json │ │ │ │ └── SonarQube.json │ │ │ ├── Dashboard │ │ │ │ ├── Dashboard.json │ │ │ │ └── Queries │ │ │ │ │ ├── All Work Items.json │ │ │ │ │ ├── Epic.json │ │ │ │ │ ├── Features.json │ │ │ │ │ ├── Product Backlog Items.json │ │ │ │ │ └── Tasks.json │ │ │ ├── EnableEpic.json │ │ │ ├── Extensions.json │ │ │ ├── Images │ │ │ │ ├── analysis_report.png │ │ │ │ ├── bug_details.png │ │ │ │ ├── build_configure.png │ │ │ │ └── build_summary.png │ │ │ ├── ImportSourceCode │ │ │ │ └── MyShuttle.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndPoints │ │ │ │ └── SonarQube-code.json │ │ │ ├── Teams │ │ │ │ ├── SonarQube Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Team1 │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Team2 │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Product Backlog Item.json │ │ │ │ └── Task.json │ │ ├── DL-Terraform │ │ │ ├── BuildDefinitions │ │ │ │ ├── Terraform-CI-YAML.json │ │ │ │ └── Terraform.json │ │ │ ├── Extensions.json │ │ │ ├── Images │ │ │ │ ├── Terraform.png │ │ │ │ ├── queuebuild.gif │ │ │ │ ├── releasetasks.png │ │ │ │ ├── releasetrigger.gif │ │ │ │ └── webapp.png │ │ │ ├── ImportSourceCode │ │ │ │ └── Terraform.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ReleaseDefinitions │ │ │ │ └── Terraform.json │ │ │ └── ServiceEndpoints │ │ │ │ └── Terraform-code.json │ │ ├── DL-WhiteSource-Bolt │ │ │ ├── BuildDefinitions │ │ │ │ ├── WhiteSourceBolt-YAML.json │ │ │ │ └── WhiteSourceBolt.json │ │ │ ├── Dashboard │ │ │ │ ├── Dashboard.json │ │ │ │ └── Queries │ │ │ │ │ ├── All Work Items.json │ │ │ │ │ ├── Epic.json │ │ │ │ │ ├── Features.json │ │ │ │ │ ├── Product Backlog Items.json │ │ │ │ │ └── Tasks.json │ │ │ ├── EnableEpic.json │ │ │ ├── Extensions.json │ │ │ ├── Images │ │ │ │ ├── CI.png │ │ │ │ ├── WhiteSourceBolt13.png │ │ │ │ └── WhiteSourceBolt30.png │ │ │ ├── ImportSourceCode │ │ │ │ └── WebGoat.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── WebGoat-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Team1 │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Team2 │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Teams.json │ │ │ │ └── WhiteSource Bolt Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Product Backlog Item.json │ │ │ │ └── Task.json │ │ ├── EndpointKeyConfig.json │ │ ├── Events.json │ │ ├── FA-IAC-migration │ │ │ ├── BuildDefinitions │ │ │ │ ├── Bicep-Migration-Pipeline.json │ │ │ │ ├── Prod-Migration-Wave-Pipeline.json │ │ │ │ └── Test-Migration-Pipeline.json │ │ │ ├── ImportSourceCode │ │ │ │ ├── GitRepository.json │ │ │ │ └── IaC Migration.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ ├── GitHub-fafc3095-EndPoint.json │ │ │ │ └── IaC-Migration-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Teams.json │ │ │ │ └── TestTemplate Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ ├── VariableGroups │ │ │ │ └── VariableGroup.json │ │ │ └── WorkItems │ │ │ │ ├── Epic.json │ │ │ │ ├── Task.json │ │ │ │ └── User Story.json │ │ ├── Gen-ContosoAir │ │ │ ├── BuildDefinitions │ │ │ │ └── ContosoAirWebCI.json │ │ │ ├── ImportSourceCode │ │ │ │ └── ContosoAir-tc.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ ├── AzureRM.json │ │ │ │ └── ContosoAir-tc-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── ContosoAir-tc Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── DB Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Teams.json │ │ │ │ └── Web Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ └── WorkItems │ │ │ │ ├── Feature.json │ │ │ │ └── User Story.json │ │ ├── Gen-MyShuttle │ │ │ ├── BuildDefinitions │ │ │ │ ├── MyShuttle-yaml.json │ │ │ │ └── MyShuttleDockerBuild.json │ │ │ ├── Dashboard │ │ │ │ ├── Dashboard.json │ │ │ │ └── Queries │ │ │ │ │ ├── All Work Items.json │ │ │ │ │ ├── Bugs.json │ │ │ │ │ ├── Feature.json │ │ │ │ │ ├── Product Backlog Items.json │ │ │ │ │ ├── Tasks.json │ │ │ │ │ ├── Test Cases.json │ │ │ │ │ ├── Test Plans.json │ │ │ │ │ └── Test Suites.json │ │ │ ├── Images │ │ │ │ ├── boards.png │ │ │ │ ├── dashboard.png │ │ │ │ └── loginpage.png │ │ │ ├── ImportSourceCode │ │ │ │ └── MyShuttle.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ ├── AzureRM.json │ │ │ │ └── MyShuttle-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── MyShuttle Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Team1 │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Team2 │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ ├── Bug.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Product Backlog Item.json │ │ │ │ ├── Task.json │ │ │ │ ├── Test Case.json │ │ │ │ ├── Test Plan.json │ │ │ │ └── Test Suite.json │ │ ├── Gen-PartsUnlimited │ │ │ ├── BuildDefinitions │ │ │ │ └── PartsUnlimited.json │ │ │ ├── Dashboard │ │ │ │ ├── Dashboard.json │ │ │ │ ├── Queries │ │ │ │ │ ├── All Items.json │ │ │ │ │ ├── Critical Bugs.json │ │ │ │ │ ├── Feedback.json │ │ │ │ │ ├── Test Case-Readiness.json │ │ │ │ │ ├── UnfinishedWork.json │ │ │ │ │ ├── User Stories.json │ │ │ │ │ └── Work in Progress.json │ │ │ │ └── WidgetQuery.json │ │ │ ├── ImportSourceCode │ │ │ │ └── PartsUnlimited.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── PullRequests │ │ │ │ ├── Comments │ │ │ │ │ ├── PullRequest1.json │ │ │ │ │ └── PullRequest2.json │ │ │ │ ├── PullRequest1.json │ │ │ │ └── PullRequest2.json │ │ │ ├── ServiceEndpoints │ │ │ │ ├── PartsUnlimited-code.json │ │ │ │ └── Visual Studio Enterprise.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── PUL-DB │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── PUL │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── PartsUnlimited-tc Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ ├── TestPlans │ │ │ │ └── TestSuites │ │ │ │ │ └── TestPlan1.json │ │ │ └── WorkItems │ │ │ │ ├── Bug.json │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Product Backlog Item.json │ │ │ │ ├── Task.json │ │ │ │ ├── Test Case.json │ │ │ │ ├── Test Plan.json │ │ │ │ └── Test Suite.json │ │ ├── Gen-Tailwind Traders │ │ │ ├── BuildDefinitions │ │ │ │ ├── TailwindTraders-Build.json │ │ │ │ ├── TailwindTraders-CodeScanning.json │ │ │ │ └── TailwindTraders-PullRequest.json │ │ │ ├── ImportSourceCode │ │ │ │ ├── Documents.json │ │ │ │ └── TailwindTraders.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ ├── Documents-code.json │ │ │ │ └── TailwindTraders-code.json │ │ │ ├── TeamArea.json │ │ │ └── Teams │ │ │ │ ├── GHAzDo-E2E Team │ │ │ │ ├── BoardColumns.json │ │ │ │ ├── BoardRows.json │ │ │ │ ├── CardFields.json │ │ │ │ ├── CardStyles.json │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ ├── Gen-eShopOnWeb │ │ │ ├── BranchPolicy │ │ │ │ ├── BuildPolicy.json │ │ │ │ └── WorkItemLinkPolicy.json │ │ │ ├── BuildDefinitions │ │ │ │ └── eShoponweb-Yaml.json │ │ │ ├── Dashboard │ │ │ │ ├── App Development Team │ │ │ │ │ ├── Dashboard.json │ │ │ │ │ └── Queries │ │ │ │ │ │ ├── All Bugs.json │ │ │ │ │ │ ├── All Epics.json │ │ │ │ │ │ ├── All Features.json │ │ │ │ │ │ ├── All Tasks.json │ │ │ │ │ │ ├── All User Stories.json │ │ │ │ │ │ ├── AllWorkofAppdevTeam.json │ │ │ │ │ │ ├── AppDevTeam Tasks.json │ │ │ │ │ │ ├── AppDevelopmentTeam Bugs.json │ │ │ │ │ │ ├── Test Cases.json │ │ │ │ │ │ └── TestcaseinDesignState.json │ │ │ │ ├── Dashboard.json │ │ │ │ └── Queries │ │ │ │ │ ├── Active Bugs.json │ │ │ │ │ ├── Active Epic.json │ │ │ │ │ ├── Active Feature.json │ │ │ │ │ ├── Active Stories.json │ │ │ │ │ ├── Active Tasks.json │ │ │ │ │ ├── All Bugs.json │ │ │ │ │ ├── All Epics.json │ │ │ │ │ ├── All Features.json │ │ │ │ │ ├── All Stories.json │ │ │ │ │ ├── All Tasks.json │ │ │ │ │ ├── All User Stories.json │ │ │ │ │ ├── All workitems.json │ │ │ │ │ ├── AllWorkofAppdevTeam.json │ │ │ │ │ ├── AppDevTeam Tasks.json │ │ │ │ │ ├── AppDevelopmentTeam Bugs.json │ │ │ │ │ ├── Assigned to me.json │ │ │ │ │ ├── Bugs By Priority.json │ │ │ │ │ ├── Bugs By Severity.json │ │ │ │ │ ├── Closed Bugs.json │ │ │ │ │ ├── Closed Epic.json │ │ │ │ │ ├── Closed Feature.json │ │ │ │ │ ├── Closed Stories.json │ │ │ │ │ ├── Closed Tasks.json │ │ │ │ │ ├── DBATeam-All work.json │ │ │ │ │ ├── Epics.json │ │ │ │ │ ├── Features.json │ │ │ │ │ ├── Followed work items.json │ │ │ │ │ ├── New Bugs.json │ │ │ │ │ ├── New Epic.json │ │ │ │ │ ├── New Feature.json │ │ │ │ │ ├── New Stories.json │ │ │ │ │ ├── New Tasks.json │ │ │ │ │ ├── Resolved Bugs.json │ │ │ │ │ ├── Tasks.json │ │ │ │ │ ├── Test Cases.json │ │ │ │ │ ├── TestcaseinDesignState.json │ │ │ │ │ └── User Stories.json │ │ │ ├── DeliveryPlans │ │ │ │ ├── App-DB features.json │ │ │ │ └── DevelopmentPlan.json │ │ │ ├── ImportSourceCode │ │ │ │ └── eShopOnWeb.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── eShoponweb-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── App Development Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── DBA Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Teams.json │ │ │ │ └── eShoponweb Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ ├── IncludeSubAreas.json │ │ │ │ │ └── TeamSetting.json │ │ │ ├── TestPlans │ │ │ │ ├── TestPlan.json │ │ │ │ └── TestSuites │ │ │ │ │ └── TestPlan.json │ │ │ └── WorkItems │ │ │ │ ├── Bug.json │ │ │ │ ├── Epic.json │ │ │ │ ├── Feature.json │ │ │ │ ├── Shared Steps.json │ │ │ │ ├── Task.json │ │ │ │ ├── Test Case.json │ │ │ │ └── User Story.json │ │ ├── MSL-Create-Build-Pipeline │ │ │ ├── ImportSourceCode │ │ │ │ └── mslearn-tailspin-spacegame-web.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── mslearn-tailspin-spacegame-web.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Space Game - web Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ └── CardStyles.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ └── Issue.json │ │ ├── MSL-Deploy-Docker-Template │ │ │ ├── BuildDefinitions │ │ │ │ └── mslearn-tailspin-spacegame-web-deploy.json │ │ │ ├── ImportSourceCode │ │ │ │ └── mslearn-tailspin-spacegame-web-docker.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── mslearn-tailspin-spacegame-web-docker-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Space Game - web - Docker Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ └── CardStyles.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ └── Issue.json │ │ ├── MSL-Deploy-Kubernetes-Template │ │ │ ├── BuildDefinitions │ │ │ │ └── mslearn-tailspin-spacegame-web-deploy.json │ │ │ ├── ImportSourceCode │ │ │ │ └── tailspin-spacegame-web-kubernetes.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── tailspin-spacegame-web-kubernetes-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Space Game - web - Docker Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ └── CardStyles.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ └── Issue.json │ │ ├── MSL-Host-Build-Agent │ │ │ ├── BuildDefinitions │ │ │ │ └── mslearn-tailspin-spacegame-web-deploy.json │ │ │ ├── ImportSourceCode │ │ │ │ └── tailspin-spacegame-web.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── tailspin-spacegame-web-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Space Game - web Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ └── CardStyles.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ └── Issue.json │ │ ├── MSL-Implement-Code-Workflow │ │ │ ├── BuildDefinitions │ │ │ │ └── mslearn-tailspin-spacegame-web-deploy.json │ │ │ ├── ImportSourceCode │ │ │ │ └── tailspin-spacegame-web.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── tailspin-spacegame-web-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Space Game - web Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ └── CardStyles.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ └── Issue.json │ │ ├── MSL-Manage-Build-Dependencies │ │ │ ├── BuildDefinitions │ │ │ │ └── mslearn-tailspin-spacegame-web-deploy.json │ │ │ ├── ImportSourceCode │ │ │ │ └── tailspin-spacegame-web.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── tailspin-spacegame-web-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Space Game - web Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ └── CardStyles.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ └── Issue.json │ │ ├── MSL-Manage-multiple-environments-azure-pipelines │ │ │ ├── BuildDefinitions │ │ │ │ └── toy-website-environments.json │ │ │ ├── ImportSourceCode │ │ │ │ └── toy-website-environments.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ └── TeamArea.json │ │ ├── MSL-Review-azure-infrastructure-changes │ │ │ ├── ImportSourceCode │ │ │ │ └── toy-website-review.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── TeamArea.json │ │ │ └── Teams │ │ │ │ ├── Teams.json │ │ │ │ └── toy-website-review Team │ │ │ │ ├── BoardColumns.json │ │ │ │ ├── BoardRows.json │ │ │ │ ├── CardFields.json │ │ │ │ └── CardStyles.json │ │ ├── MSL-Run-Quality-Tests │ │ │ ├── BuildDefinitions │ │ │ │ └── mslearn-tailspin-spacegame-web-deploy.json │ │ │ ├── ImportSourceCode │ │ │ │ └── tailspin-spacegame-web.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── tailspin-spacegame-web-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Space Game - web Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ └── CardStyles.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ └── Issue.json │ │ ├── MSL-Scan-Open-Source │ │ │ ├── BuildDefinitions │ │ │ │ └── mslearn-tailspin-spacegame-web-deploy.json │ │ │ ├── ImportSourceCode │ │ │ │ └── tailspin-spacegame-web.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── tailspin-spacegame-web-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Space Game - web Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ └── CardStyles.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ └── Issue.json │ │ ├── MSL-Scan-for-Vulnerabilities │ │ │ ├── BuildDefinitions │ │ │ │ └── mslearn-tailspin-spacegame-web-deploy.json │ │ │ ├── ImportSourceCode │ │ │ │ └── tailspin-spacegame-web.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── tailspin-spacegame-web-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Space Game - web Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ └── CardStyles.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ └── Issue.json │ │ ├── MSL-SpaceGame-AzureFunctions │ │ │ ├── BuildDefinitions │ │ │ │ └── mslearn-tailspin-spacegame-web-azure-functions.json │ │ │ ├── ImportSourceCode │ │ │ │ └── tailspin-spacegame-web-azure-functions.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── tailspin-spacegame-web-azure-functions-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Space Game Azure Functions Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ └── CardStyles.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ └── Issue.json │ │ ├── MSL-SpaceGame-DeliveryPlans │ │ │ ├── BuildDefinitions │ │ │ │ └── mslearn-tailspin-spacegame-web-deploy.json │ │ │ ├── ImportSourceCode │ │ │ │ └── tailspin-spacegame-web.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── tailspin-spacegame-web-code.json │ │ │ ├── TeamArea.json │ │ │ ├── TeamIterationMap.json │ │ │ ├── Teams │ │ │ │ ├── Space Game - web - Delivery plans Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Space Game Delivery Plans Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Space Game Engine Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ ├── Space Game Web Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ ├── CardStyles.json │ │ │ │ │ └── TeamSetting.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ └── Product Backlog Item.json │ │ ├── MSL-SpaceGame-web-DeployDatabase │ │ │ ├── BuildDefinitions │ │ │ │ └── mslearn-tailspin-spacegame-web-deploy.json │ │ │ ├── ImportSourceCode │ │ │ │ └── tailspin-spacegame-web-deploy.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── tailspin-spacegame-web-deploy-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Space Game - web - Deploy database Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ └── CardStyles.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ └── Issue.json │ │ ├── MSL-SpaceGame-web-DeploymentPatterns │ │ │ ├── BuildDefinitions │ │ │ │ └── mslearn-tailspin-spacegame-web-deploy.json │ │ │ ├── ImportSourceCode │ │ │ │ └── tailspin-spacegame-web-deploy.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── tailspin-spacegame-web-deploy-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Space Game - web - Deployment patterns Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ └── CardStyles.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ └── Issue.json │ │ ├── MSL-SpaceGame-web-FunctionalTests │ │ │ ├── BuildDefinitions │ │ │ │ └── mslearn-tailspin-spacegame-web-deploy.json │ │ │ ├── ImportSourceCode │ │ │ │ └── tailspin-spacegame-web-deploy.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── tailspin-spacegame-web-deploy-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Space Game - web - Functional tests Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ └── CardStyles.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ └── Issue.json │ │ ├── MSL-SpaceGame-web-Multi-stage │ │ │ ├── BuildDefinitions │ │ │ │ └── mslearn-tailspin-spacegame-web-deploy.json │ │ │ ├── ImportSourceCode │ │ │ │ └── tailspin-spacegame-web-deploy.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── tailspin-spacegame-web-deploy-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Space Game - web - Release workflow Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ └── CardStyles.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ └── Issue.json │ │ ├── MSL-SpaceGame-web-Non-functionalTests │ │ │ ├── BuildDefinitions │ │ │ │ └── mslearn-tailspin-spacegame-web-deploy.json │ │ │ ├── ImportSourceCode │ │ │ │ └── tailspin-spacegame-web-deploy.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── tailspin-spacegame-web-deploy-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Space Game - web - Non-functional tests Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ └── CardStyles.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ └── Issue.json │ │ ├── MSL-SpaceGame-web-ProvisionDB │ │ │ ├── BuildDefinitions │ │ │ │ └── mslearn-tailspin-spacegame-web-automate.json │ │ │ ├── ImportSourceCode │ │ │ │ └── tailspin-spacegame-web-automate.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── tailspin-spacegame-web-automate-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Space Game - web - ProvisionDB Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ └── CardStyles.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ └── Issue.json │ │ ├── MSL-SpaceGame-web-Release │ │ │ ├── BuildDefinitions │ │ │ │ └── mslearn-tailspin-spacegame-web-deploy.json │ │ │ ├── ImportSourceCode │ │ │ │ └── tailspin-spacegame-web-deploy.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── tailspin-spacegame-web-deploy-code.json │ │ │ ├── TeamArea.json │ │ │ └── Teams │ │ │ │ ├── Space Game - web - Release Team │ │ │ │ ├── BoardColumns.json │ │ │ │ ├── BoardRows.json │ │ │ │ ├── CardFields.json │ │ │ │ └── CardStyles.json │ │ │ │ └── Teams.json │ │ ├── MSL-SpaceGame-web-Terraform │ │ │ ├── BuildDefinitions │ │ │ │ └── mslearn-tailspin-spacegame-web-automate.json │ │ │ ├── ImportSourceCode │ │ │ │ └── tailspin-spacegame-web-automate.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── ServiceEndpoints │ │ │ │ └── tailspin-spacegame-web-automate-code.json │ │ │ ├── TeamArea.json │ │ │ ├── Teams │ │ │ │ ├── Space Game - web - Terraform Team │ │ │ │ │ ├── BoardColumns.json │ │ │ │ │ ├── BoardRows.json │ │ │ │ │ ├── CardFields.json │ │ │ │ │ └── CardStyles.json │ │ │ │ └── Teams.json │ │ │ └── WorkItems │ │ │ │ └── Issue.json │ │ ├── MSL-Test-bicep │ │ │ ├── BuildDefinitions │ │ │ │ └── toy-website-test.json │ │ │ ├── ImportSourceCode │ │ │ │ └── toy-website-test.json │ │ │ ├── ProjectSettings.json │ │ │ └── ProjectTemplate.json │ │ ├── MSL-Toy-reusable │ │ │ ├── BuildDefinitions │ │ │ │ ├── module-storage-account.json │ │ │ │ └── template-spec-linux-app-service.json │ │ │ ├── ImportSourceCode │ │ │ │ └── toy-reusable.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── TeamArea.json │ │ │ └── Teams │ │ │ │ ├── Teams.json │ │ │ │ └── toy-reusable Team │ │ │ │ ├── BoardColumns.json │ │ │ │ ├── BoardRows.json │ │ │ │ ├── CardFields.json │ │ │ │ └── CardStyles.json │ │ ├── MSL-manage-end-end-deployment-scenarios │ │ │ ├── BuildDefinitions │ │ │ │ └── toy-website-end-to-end.json │ │ │ ├── ImportSourceCode │ │ │ │ └── toy-website-end-to-end.json │ │ │ ├── Iterations.json │ │ │ ├── ProjectSettings.json │ │ │ ├── ProjectTemplate.json │ │ │ ├── TeamArea.json │ │ │ └── VariableGroups │ │ │ │ └── VariableGroup.json │ │ ├── MovePages.json │ │ ├── SampleContent.json │ │ ├── TemplateImages │ │ │ ├── Ansible.png │ │ │ ├── AzureCommunity │ │ │ │ ├── Azure Sentinel DevOps.jpg │ │ │ │ ├── AzureGov.png │ │ │ │ ├── ModernDataAnalytics.png │ │ │ │ ├── ModernDataWarehouse.png │ │ │ │ ├── NIST 800-171.png │ │ │ │ ├── RecommederIcon.PNG │ │ │ │ ├── SapOnAzureLogo.png │ │ │ │ ├── Secureresearch.png │ │ │ │ ├── iac.png │ │ │ │ ├── modiot.png │ │ │ │ ├── unifiedgov.png │ │ │ │ └── windows-virtual-desktop.svg │ │ │ ├── AzureDevOps.png │ │ │ ├── AzureFunction.png │ │ │ ├── CloudAdoptionFramework.jpg │ │ │ ├── CodeFile.png │ │ │ ├── ContosAir.png │ │ │ ├── Docker.png │ │ │ ├── Dynatrace.png │ │ │ ├── GitHub.png │ │ │ ├── MachineLearning.png │ │ │ ├── MyHealthClinic.png │ │ │ ├── MyShuttle.png │ │ │ ├── PHP.png │ │ │ ├── Partunlimited.png │ │ │ ├── Python.png │ │ │ ├── SmartHotel.png │ │ │ ├── SonarQube.png │ │ │ ├── TailwindTraders.png │ │ │ ├── Terraform.png │ │ │ ├── WhiteSourceBolt.png │ │ │ ├── devopsdojo.png │ │ │ ├── eShop.png │ │ │ ├── key-vault.png │ │ │ ├── kubernetes.png │ │ │ ├── launchdarkly.png │ │ │ ├── mslearn │ │ │ │ ├── bicep-end-to-end-deployment-pipeline.svg │ │ │ │ ├── bicep-publish-code-pipelines.png │ │ │ │ ├── bicepenvironments.svg │ │ │ │ ├── create-a-build-pipeline-azure-pipelines.png │ │ │ │ ├── create-a-release-pipeline-with-azure-pipelines.svg │ │ │ │ ├── create-multi-stage-pipeline.svg │ │ │ │ ├── deploy-azure-functions.svg │ │ │ │ ├── deploy-docker.svg │ │ │ │ ├── deploy-kubernetes.svg │ │ │ │ ├── generic-badge.svg │ │ │ │ ├── host-your-own-build-server-in-your-build-pipeline.png │ │ │ │ ├── implement-a-code-workflow-in-your-build-pipeline.png │ │ │ │ ├── manage-agile-software-delivery-plans-across-teams.svg │ │ │ │ ├── manage-database-changes-with-azure-pipelines.svg │ │ │ │ ├── manage-dependencies-in-your-build-pipeline.png │ │ │ │ ├── manage-release-cadence-using-deployment-patterns.svg │ │ │ │ ├── manage-security-and-compliance-in-your-build-pipeline.png │ │ │ │ ├── provision-database-azure-pipelines.svg │ │ │ │ ├── review-azure-infrastructure.png │ │ │ │ ├── run-functional-tests-azure-pipelines.svg │ │ │ │ ├── run-non-functional-tests-in-azure-pipelines.svg │ │ │ │ ├── run-quality-tests-when-your-application-builds.png │ │ │ │ ├── scan-code-for-vulnerabilities-in-your-build-pipeline.png │ │ │ │ └── testbicep.svg │ │ │ ├── octopus.png │ │ │ ├── policy-org.png │ │ │ └── selenium.png │ │ └── TemplateSetting.json │ └── appsettings.json └── API │ ├── ADOConfiguration.cs │ ├── API.csproj │ ├── ApiServiceBase.cs │ ├── Builds │ └── BuildDefinition.cs │ ├── Class1.cs │ ├── DeliveryPlans │ └── Plans.cs │ ├── DeploymentGRoup │ └── DeploymentGroup.cs │ ├── ExtensionManagement │ └── GetListExtenison.cs │ ├── Extractor │ ├── ClassificationNodes.cs │ ├── GetBuildandReleaseDefs.cs │ ├── GetWorkItemsCount.cs │ ├── ProjectProperties.cs │ └── VariableGroups.cs │ ├── Git │ ├── GitHubImportRepo.cs │ └── Repository.cs │ ├── IADOConfiguration.cs │ ├── JSON │ ├── CreateBuildDefination.json │ ├── CreateTeam.json │ ├── CreateTeamProject.json │ ├── GetRepository.json │ ├── ReleaseDefination.json │ ├── WorkItem.json │ └── WorkItemNew.json │ ├── ProjectsAndTeams │ ├── Accounts.cs │ ├── GetAllGroups.cs │ ├── Projects.cs │ ├── TeamIteration.cs │ └── Teams.cs │ ├── QueriesAndWidgets │ └── Queries.cs │ ├── Queues │ └── Queue.cs │ ├── ReleasesDef │ └── ReleaseDefinition.cs │ ├── Service │ └── ServiceEndPoint.cs │ ├── Services │ └── HttpServices.cs │ ├── TestManagement │ └── TestManagement.cs │ ├── Utility.cs │ ├── Viewmodel │ ├── BaseViewModel.cs │ ├── BranchPolicy │ │ ├── BranchPolicy.cs │ │ └── BranchPolicyTypes.cs │ ├── Builds │ │ └── BuildGetListofBuildDefinitionsResponse.cs │ ├── Extractor │ │ ├── BoardColumnResponseAgile.cs │ │ ├── BoardColumnResponseBasic.cs │ │ ├── BoardColumnResponseScrum.cs │ │ ├── BuildDefinitionResponse.cs │ │ ├── BuildDefinitions.cs │ │ ├── ExportBoardRows.cs │ │ ├── GetBuildDefResponse.cs │ │ ├── GetExtensions.cs │ │ ├── GetINumIteration.cs │ │ ├── GetProcessTemplate.cs │ │ ├── GetQueries.cs │ │ ├── GetReleaseDefResponse.cs │ │ ├── GetServiceEndpoints.cs │ │ ├── GetTeamSetting.cs │ │ ├── GetVariableGroups.cs │ │ ├── GetWorkItemsResponse.cs │ │ ├── Iterations.cs │ │ ├── IterationtoSave.cs │ │ ├── KeyConfig.cs │ │ ├── ProjectSetting.cs │ │ ├── ReleaseDefCountResponse.cs │ │ ├── ReleaseDefResponse.cs │ │ ├── RepositoryList.cs │ │ ├── Teams.cs │ │ ├── WorkItemFetchResponse.cs │ │ └── WorkItemNames.cs │ ├── GitHub │ │ ├── ForkRepos.cs │ │ └── GitHubRepoResponse.cs │ ├── Importer │ │ ├── ImportBoardColumns.cs │ │ ├── ImportBoardRows.cs │ │ ├── ImportCardFields.cs │ │ ├── ImpotCardStyle.cs │ │ └── IncludeSubAreas.cs │ ├── Plans │ │ ├── APlan.cs │ │ └── DeliveryPlans.cs │ ├── ProjectAndTeams │ │ ├── AccountMembers.cs │ │ ├── GetTeamResponse.cs │ │ ├── ListofProjectsResponse.cs │ │ ├── TeamIterationsResponse.cs │ │ ├── TeamMemberResponse.cs │ │ ├── TeamResponse.cs │ │ └── TeamSettingResponse.cs │ ├── QueriesAndWidgets │ │ ├── DashBoardeTagResponse.cs │ │ ├── DashboardResponse.cs │ │ └── QueryResponse.cs │ ├── Queue │ │ └── QueueModel.cs │ ├── ReleaseDefinition │ │ ├── ReleaseDefinitions.cs │ │ └── ReleaseDefinitionsResponse.cs │ ├── Repository │ │ ├── GetAllRepositoriesResponse.cs │ │ └── PullRequestComments.cs │ ├── Service │ │ └── ServiceEndpointModel.cs │ ├── Sprint │ │ └── SprintResponse.cs │ ├── Wiki │ │ ├── CodewikiResponse.cs │ │ └── ProjectwikiResponse.cs │ └── WorkItem │ │ ├── BatchRequest.cs │ │ ├── CardStylesPatch.cs │ │ ├── ColumnPost.cs │ │ ├── CreateUpdateNodeViewModel.cs │ │ ├── GetBoardColumnResponse.cs │ │ ├── GetBoardColumnResponseAgile.cs │ │ ├── GetCardFieldResponse.cs │ │ ├── GetNodeResponse.cs │ │ ├── GetNodesResponse.cs │ │ ├── GetWorkItemsResponse.cs │ │ ├── ImportWorkItemModel.cs │ │ ├── ReturnException.cs │ │ ├── SetEpicSettings.cs │ │ ├── WorkItemBatchPostResponse.cs │ │ ├── WorkItemPatch.cs │ │ └── WorkItemPatchResponse.cs │ ├── Wiki │ └── ManageWiki.cs │ ├── WorkItemAndTracking │ ├── BoardColumn.cs │ ├── Cards.cs │ ├── ClassificationNodes.cs │ ├── ImportWorkItems.cs │ ├── IssueWI.cs │ ├── SwimLanes.cs │ └── WorkItem.cs │ ├── app.config │ └── packages.config └── style.scss /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/console-app-dotnet-core.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/.github/workflows/console-app-dotnet-core.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /docs/Auth-Device-code-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/docs/Auth-Device-code-flow.md -------------------------------------------------------------------------------- /docs/Images/AdvancedSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/docs/Images/AdvancedSettings.png -------------------------------------------------------------------------------- /docs/Images/AppDetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/docs/Images/AppDetails.png -------------------------------------------------------------------------------- /docs/Images/ChooseAPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/docs/Images/ChooseAPI.png -------------------------------------------------------------------------------- /docs/Images/ChoosePermission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/docs/Images/ChoosePermission.png -------------------------------------------------------------------------------- /docs/RunApplication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/docs/RunApplication.md -------------------------------------------------------------------------------- /docs/TemplateBuilder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/docs/TemplateBuilder.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/index.html -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/ADOGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator.sln -------------------------------------------------------------------------------- /src/ADOGenerator/ADOGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/ADOGenerator.csproj -------------------------------------------------------------------------------- /src/ADOGenerator/IServices/IAuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/IServices/IAuthService.cs -------------------------------------------------------------------------------- /src/ADOGenerator/IServices/IExtractorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/IServices/IExtractorService.cs -------------------------------------------------------------------------------- /src/ADOGenerator/IServices/IInitService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/IServices/IInitService.cs -------------------------------------------------------------------------------- /src/ADOGenerator/IServices/IProjectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/IServices/IProjectService.cs -------------------------------------------------------------------------------- /src/ADOGenerator/IServices/ITemplateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/IServices/ITemplateService.cs -------------------------------------------------------------------------------- /src/ADOGenerator/Models/AccessDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Models/AccessDetails.cs -------------------------------------------------------------------------------- /src/ADOGenerator/Models/Accounts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Models/Accounts.cs -------------------------------------------------------------------------------- /src/ADOGenerator/Models/CreateZips.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Models/CreateZips.cs -------------------------------------------------------------------------------- /src/ADOGenerator/Models/Default.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Models/Default.cs -------------------------------------------------------------------------------- /src/ADOGenerator/Models/Email.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Models/Email.cs -------------------------------------------------------------------------------- /src/ADOGenerator/Models/ErrorMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Models/ErrorMessages.cs -------------------------------------------------------------------------------- /src/ADOGenerator/Models/ExtractorAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Models/ExtractorAnalysis.cs -------------------------------------------------------------------------------- /src/ADOGenerator/Models/GitHubAccessDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Models/GitHubAccessDetails.cs -------------------------------------------------------------------------------- /src/ADOGenerator/Models/LoginModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Models/LoginModel.cs -------------------------------------------------------------------------------- /src/ADOGenerator/Models/ProfileDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Models/ProfileDetails.cs -------------------------------------------------------------------------------- /src/ADOGenerator/Models/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Models/Project.cs -------------------------------------------------------------------------------- /src/ADOGenerator/Models/ProjectList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Models/ProjectList.cs -------------------------------------------------------------------------------- /src/ADOGenerator/Models/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Models/Query.cs -------------------------------------------------------------------------------- /src/ADOGenerator/Models/ReadUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Models/ReadUser.cs -------------------------------------------------------------------------------- /src/ADOGenerator/Models/TemplateSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Models/TemplateSelection.cs -------------------------------------------------------------------------------- /src/ADOGenerator/PreSetting/BoardColumns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/PreSetting/BoardColumns.json -------------------------------------------------------------------------------- /src/ADOGenerator/PreSetting/CreateQueryFolder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/PreSetting/CreateQueryFolder.json -------------------------------------------------------------------------------- /src/ADOGenerator/PreSetting/DemoExtensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/PreSetting/DemoExtensions.json -------------------------------------------------------------------------------- /src/ADOGenerator/PreSetting/GitHubEndPoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/PreSetting/GitHubEndPoint.json -------------------------------------------------------------------------------- /src/ADOGenerator/PreSetting/ImportSourceCode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/PreSetting/ImportSourceCode.json -------------------------------------------------------------------------------- /src/ADOGenerator/PreSetting/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/PreSetting/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/PreSetting/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/PreSetting/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/PreSetting/ServiceEndPoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/PreSetting/ServiceEndPoint.json -------------------------------------------------------------------------------- /src/ADOGenerator/PreSetting/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/PreSetting/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/PreSetting/UpdateCardFields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/PreSetting/UpdateCardFields.json -------------------------------------------------------------------------------- /src/ADOGenerator/PreSetting/UpdateCardStyles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/PreSetting/UpdateCardStyles.json -------------------------------------------------------------------------------- /src/ADOGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Program.cs -------------------------------------------------------------------------------- /src/ADOGenerator/ServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/ServiceExtensions.cs -------------------------------------------------------------------------------- /src/ADOGenerator/Services/AuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Services/AuthService.cs -------------------------------------------------------------------------------- /src/ADOGenerator/Services/ExtractorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Services/ExtractorService.cs -------------------------------------------------------------------------------- /src/ADOGenerator/Services/Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Services/Init.cs -------------------------------------------------------------------------------- /src/ADOGenerator/Services/ProjectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Services/ProjectService.cs -------------------------------------------------------------------------------- /src/ADOGenerator/Services/TemplateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Services/TemplateService.cs -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-AzureSentinel/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-AzureSentinel/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-AzureSentinel/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-AzureSentinel/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-AzureSentinel/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-AzureSentinel/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-AzureSentinel/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-AzureSentinel/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-AzureSentinel/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-AzureSentinel/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-AzureSentinel/WorkItems/Feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-AzureSentinel/WorkItems/Feature.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-AzureSentinel/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-AzureSentinel/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-AzureSentinel/WorkItems/User Story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-AzureSentinel/WorkItems/User Story.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-NIST800171Rev2/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-NIST800171Rev2/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-NIST800171Rev2/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-NIST800171Rev2/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-NIST800171Rev2/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-NIST800171Rev2/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-NIST800171Rev2/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-NIST800171Rev2/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-NIST800171Rev2/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-NIST800171Rev2/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-NIST800171Rev2/WorkItems/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-NIST800171Rev2/WorkItems/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-NIST800171Rev2/WorkItems/Feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-NIST800171Rev2/WorkItems/Feature.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-NIST800171Rev2/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-NIST800171Rev2/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-NIST800171Rev2/WorkItems/User Story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-NIST800171Rev2/WorkItems/User Story.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-SapOnAzure/Dashboard/Dashboard.json: -------------------------------------------------------------------------------- 1 | "text" -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-SapOnAzure/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-SapOnAzure/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-SapOnAzure/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-SapOnAzure/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-SapOnAzure/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-SapOnAzure/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-SapOnAzure/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-SapOnAzure/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-SapOnAzure/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-SapOnAzure/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-SapOnAzure/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-SapOnAzure/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-SapOnAzure/WorkItems/User Story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-SapOnAzure/WorkItems/User Story.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-WVDGuidance/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-WVDGuidance/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-WVDGuidance/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-WVDGuidance/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-WVDGuidance/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-WVDGuidance/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-WVDGuidance/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-WVDGuidance/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-WVDGuidance/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-WVDGuidance/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-WVDGuidance/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-WVDGuidance/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-WVDGuidance/WorkItems/User Story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/AC-WVDGuidance/WorkItems/User Story.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AKS_CAF/Dashboard/Dashboard.json: -------------------------------------------------------------------------------- 1 | "text" -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AKS_CAF/Dashboard/Queries/WVD-AKA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-AKS_CAF/Dashboard/Queries/WVD-AKA.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AKS_CAF/Extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-AKS_CAF/Extensions.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AKS_CAF/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-AKS_CAF/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AKS_CAF/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-AKS_CAF/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AKS_CAF/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-AKS_CAF/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AKS_CAF/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-AKS_CAF/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AKS_CAF/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-AKS_CAF/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AKS_CAF/WorkItems/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-AKS_CAF/WorkItems/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AKS_CAF/WorkItems/Feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-AKS_CAF/WorkItems/Feature.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AKS_CAF/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-AKS_CAF/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AKS_CAF/WorkItems/User Story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-AKS_CAF/WorkItems/User Story.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AzureGovernance/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-AzureGovernance/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AzureGovernance/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-AzureGovernance/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AzureGovernance/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-AzureGovernance/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AzureGovernance/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-AzureGovernance/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AzureGovernance/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-AzureGovernance/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AzureGovernance/WorkItems/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-AzureGovernance/WorkItems/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AzureGovernance/WorkItems/Feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-AzureGovernance/WorkItems/Feature.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AzureGovernance/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-AzureGovernance/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/Images/Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/Images/Overview.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/Images/Website.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/Images/Website.PNG -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/WorkItems/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/WorkItems/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-KnowledgeMining/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-KnowledgeMining/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-KnowledgeMining/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-KnowledgeMining/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-KnowledgeMining/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-KnowledgeMining/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-KnowledgeMining/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-KnowledgeMining/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-KnowledgeMining/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-KnowledgeMining/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-KnowledgeMining/WorkItems/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-KnowledgeMining/WorkItems/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-KnowledgeMining/WorkItems/Feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-KnowledgeMining/WorkItems/Feature.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-KnowledgeMining/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-KnowledgeMining/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernDataAnalytics/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ModernDataAnalytics/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernDataAnalytics/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ModernDataAnalytics/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernDataAnalytics/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ModernDataAnalytics/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernDataAnalytics/WorkItems/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ModernDataAnalytics/WorkItems/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernDataAnalytics/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ModernDataAnalytics/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernDataWarehouse/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ModernDataWarehouse/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernDataWarehouse/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ModernDataWarehouse/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernDataWarehouse/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ModernDataWarehouse/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernDataWarehouse/WorkItems/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ModernDataWarehouse/WorkItems/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernDataWarehouse/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ModernDataWarehouse/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernIOT/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ModernIOT/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernIOT/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ModernIOT/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernIOT/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ModernIOT/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernIOT/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ModernIOT/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernIOT/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ModernIOT/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernIOT/WorkItems/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ModernIOT/WorkItems/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernIOT/WorkItems/Feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ModernIOT/WorkItems/Feature.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernIOT/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ModernIOT/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernIOT/WorkItems/User Story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ModernIOT/WorkItems/User Story.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SQL_Migration/Dashboard/Dashboard.json: -------------------------------------------------------------------------------- 1 | "text" -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SQL_Migration/Extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-SQL_Migration/Extensions.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SQL_Migration/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-SQL_Migration/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SQL_Migration/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-SQL_Migration/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SQL_Migration/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-SQL_Migration/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SQL_Migration/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-SQL_Migration/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SQL_Migration/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-SQL_Migration/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SQL_Migration/WorkItems/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-SQL_Migration/WorkItems/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SQL_Migration/WorkItems/Feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-SQL_Migration/WorkItems/Feature.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SQL_Migration/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-SQL_Migration/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SQL_Migration/WorkItems/User Story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-SQL_Migration/WorkItems/User Story.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SecureResearch/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-SecureResearch/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SecureResearch/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-SecureResearch/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SecureResearch/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-SecureResearch/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SecureResearch/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-SecureResearch/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SecureResearch/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-SecureResearch/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SecureResearch/WorkItems/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-SecureResearch/WorkItems/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SecureResearch/WorkItems/Feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-SecureResearch/WorkItems/Feature.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SecureResearch/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-SecureResearch/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ServerMigration/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ServerMigration/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ServerMigration/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ServerMigration/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ServerMigration/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ServerMigration/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ServerMigration/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ServerMigration/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ServerMigration/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ServerMigration/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ServerMigration/WorkItems/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ServerMigration/WorkItems/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ServerMigration/WorkItems/Feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ServerMigration/WorkItems/Feature.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ServerMigration/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-ServerMigration/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-UnifiedDataGovernance/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-UnifiedDataGovernance/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-UnifiedDataGovernance/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-UnifiedDataGovernance/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-UnifiedDataGovernance/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-UnifiedDataGovernance/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-WindowsVirtualDesktop/Dashboard/Dashboard.json: -------------------------------------------------------------------------------- 1 | "text" -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-WindowsVirtualDesktop/Extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-WindowsVirtualDesktop/Extensions.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-WindowsVirtualDesktop/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-WindowsVirtualDesktop/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-WindowsVirtualDesktop/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-WindowsVirtualDesktop/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-WindowsVirtualDesktop/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CAF-WindowsVirtualDesktop/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CreateProject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CreateProject.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CreateWiki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/CreateWiki.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/BuildDefinitions/AKS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/BuildDefinitions/AKS.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Dashboard/Queries/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/Dashboard/Queries/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Dashboard/Queries/Features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/Dashboard/Queries/Features.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Dashboard/Queries/Tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/Dashboard/Queries/Tasks.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/EnableEpic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/EnableEpic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/Extensions.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Images/AKS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/Images/AKS.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Images/aksdashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/Images/aksdashboard.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Images/finalresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/Images/finalresult.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Images/update_CD3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/Images/update_CD3.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Images/updateprocessbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/Images/updateprocessbd.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/ImportSourceCode/AKS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/ImportSourceCode/AKS.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/ReleaseDefinitions/AKS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/ReleaseDefinitions/AKS.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/ServiceEndpoints/AKS-code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/ServiceEndpoints/AKS-code.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Teams/Team1/BoardColumns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/Teams/Team1/BoardColumns.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Teams/Team1/BoardRows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/Teams/Team1/BoardRows.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Teams/Team1/CardFields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/Teams/Team1/CardFields.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Teams/Team1/CardStyles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/Teams/Team1/CardStyles.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Teams/Team1/TeamSetting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/Teams/Team1/TeamSetting.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Teams/Team2/BoardColumns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/Teams/Team2/BoardColumns.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Teams/Team2/BoardRows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/Teams/Team2/BoardRows.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Teams/Team2/CardFields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/Teams/Team2/CardFields.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Teams/Team2/CardStyles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/Teams/Team2/CardStyles.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Teams/Team2/TeamSetting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/Teams/Team2/TeamSetting.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/WorkItems/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/WorkItems/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/WorkItems/Feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/WorkItems/Feature.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/WorkItems/Product Backlog Item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/WorkItems/Product Backlog Item.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AKS/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Ansible/BuildDefinitions/Ansible-CI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Ansible/BuildDefinitions/Ansible-CI.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Ansible/Extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Ansible/Extensions.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Ansible/Images/browseweb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Ansible/Images/browseweb.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Ansible/Images/cd-queue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Ansible/Images/cd-queue.gif -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Ansible/Images/ci-queue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Ansible/Images/ci-queue.gif -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Ansible/Images/logintosite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Ansible/Images/logintosite.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Ansible/Images/playbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Ansible/Images/playbook.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Ansible/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Ansible/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Ansible/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Ansible/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Ansible/ReleaseDefinitions/Ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Ansible/ReleaseDefinitions/Ansible.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Ansible/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Ansible/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AzureFunctions/EnableEpic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AzureFunctions/EnableEpic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AzureFunctions/Images/deploysite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AzureFunctions/Images/deploysite.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AzureFunctions/Images/pulwebsite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AzureFunctions/Images/pulwebsite.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AzureFunctions/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AzureFunctions/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AzureFunctions/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AzureFunctions/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AzureFunctions/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AzureFunctions/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AzureFunctions/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AzureFunctions/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AzureFunctions/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AzureFunctions/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AzureFunctions/WorkItems/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AzureFunctions/WorkItems/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AzureFunctions/WorkItems/Feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-AzureFunctions/WorkItems/Feature.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/EnableEpic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-DeploymentGroups/EnableEpic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/Images/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-DeploymentGroups/Images/application.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/Images/dgscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-DeploymentGroups/Images/dgscript.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-DeploymentGroups/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-DeploymentGroups/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-DeploymentGroups/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-DeploymentGroups/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-DeploymentGroups/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/BuildDefinitions/Docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/BuildDefinitions/Docker.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Dashboard/Dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/Dashboard/Dashboard.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Dashboard/Queries/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/Dashboard/Queries/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Dashboard/Queries/Features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/Dashboard/Queries/Features.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Dashboard/Queries/Tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/Dashboard/Queries/Tasks.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/EnableEpic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/EnableEpic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Images/buildresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/Images/buildresult.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Images/buildtasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/Images/buildtasks.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Images/finalresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/Images/finalresult.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Images/release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/Images/release.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/ImportSourceCode/Docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/ImportSourceCode/Docker.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/ReleaseDefinitions/Docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/ReleaseDefinitions/Docker.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/ServiceEndpoints/Docker-code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/ServiceEndpoints/Docker-code.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Teams/Docker Team/BoardRows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/Teams/Docker Team/BoardRows.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Teams/Docker Team/CardFields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/Teams/Docker Team/CardFields.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Teams/Docker Team/CardStyles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/Teams/Docker Team/CardStyles.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Teams/Team1/BoardColumns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/Teams/Team1/BoardColumns.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Teams/Team1/BoardRows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/Teams/Team1/BoardRows.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Teams/Team1/CardFields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/Teams/Team1/CardFields.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Teams/Team1/CardStyles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/Teams/Team1/CardStyles.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Teams/Team1/TeamSetting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/Teams/Team1/TeamSetting.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Teams/Team2/BoardColumns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/Teams/Team2/BoardColumns.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Teams/Team2/BoardRows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/Teams/Team2/BoardRows.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Teams/Team2/CardFields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/Teams/Team2/CardFields.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Teams/Team2/CardStyles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/Teams/Team2/CardStyles.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Teams/Team2/TeamSetting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/Teams/Team2/TeamSetting.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/WorkItems/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/WorkItems/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/WorkItems/Feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/WorkItems/Feature.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Docker/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Keyvault/Extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Keyvault/Extensions.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Keyvault/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Keyvault/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Keyvault/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Keyvault/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Keyvault/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Keyvault/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Keyvault/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Keyvault/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Keyvault/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Keyvault/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Keyvault/WorkItems/User Story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Keyvault/WorkItems/User Story.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-LaunchDarkly/Extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-LaunchDarkly/Extensions.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-LaunchDarkly/Images/CD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-LaunchDarkly/Images/CD.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-LaunchDarkly/Images/browseapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-LaunchDarkly/Images/browseapp.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-LaunchDarkly/Images/buildandrelease.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-LaunchDarkly/Images/buildandrelease.gif -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-LaunchDarkly/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-LaunchDarkly/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-LaunchDarkly/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-LaunchDarkly/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-LaunchDarkly/UerStoriesfromTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-LaunchDarkly/UerStoriesfromTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-MachineLearning/Images/CI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-MachineLearning/Images/CI.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-MachineLearning/Images/Items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-MachineLearning/Images/Items.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-MachineLearning/Images/aml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-MachineLearning/Images/aml.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-MachineLearning/Images/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-MachineLearning/Images/workflow.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-MachineLearning/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-MachineLearning/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-MachineLearning/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-MachineLearning/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-MachineLearning/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-MachineLearning/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-MachineLearning/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-MachineLearning/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/BuildDefinitions/Octopus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/BuildDefinitions/Octopus.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Dashboard/Dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/Dashboard/Dashboard.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Dashboard/Queries/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/Dashboard/Queries/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Dashboard/Queries/Features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/Dashboard/Queries/Features.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Dashboard/Queries/Tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/Dashboard/Queries/Tasks.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/EnableEpic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/EnableEpic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/Extensions.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Images/AccountOctopusDeploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/Images/AccountOctopusDeploy.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Images/OctopusDeploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/Images/OctopusDeploy.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Images/PartsUnlimited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/Images/PartsUnlimited.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/ImportSourceCode/Octopus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/ImportSourceCode/Octopus.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/ServiceEndpoints/Octopus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/ServiceEndpoints/Octopus.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Teams/Team1/BoardColumns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/Teams/Team1/BoardColumns.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Teams/Team1/BoardRows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/Teams/Team1/BoardRows.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Teams/Team1/CardFields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/Teams/Team1/CardFields.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Teams/Team1/CardStyles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/Teams/Team1/CardStyles.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Teams/Team1/TeamSetting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/Teams/Team1/TeamSetting.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Teams/Team2/BoardColumns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/Teams/Team2/BoardColumns.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Teams/Team2/BoardRows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/Teams/Team2/BoardRows.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Teams/Team2/CardFields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/Teams/Team2/CardFields.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Teams/Team2/CardStyles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/Teams/Team2/CardStyles.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Teams/Team2/TeamSetting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/Teams/Team2/TeamSetting.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/WorkItems/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/WorkItems/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/WorkItems/Feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/WorkItems/Feature.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Octopus/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/BuildDefinitions/PHP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/BuildDefinitions/PHP.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/BuildDefinitions/php-yaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/BuildDefinitions/php-yaml.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Dashboard/Dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/Dashboard/Dashboard.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Dashboard/Queries/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/Dashboard/Queries/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Dashboard/Queries/Features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/Dashboard/Queries/Features.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Dashboard/Queries/Tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/Dashboard/Queries/Tasks.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/ImportSourceCode/PHP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/ImportSourceCode/PHP.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/ReleaseDefinitions/PHP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/ReleaseDefinitions/PHP.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/ServiceEndpoints/PHP-code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/ServiceEndpoints/PHP-code.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Teams/Team1/BoardColumns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/Teams/Team1/BoardColumns.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Teams/Team1/BoardRows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/Teams/Team1/BoardRows.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Teams/Team1/CardFields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/Teams/Team1/CardFields.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Teams/Team1/CardStyles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/Teams/Team1/CardStyles.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Teams/Team1/TeamSetting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/Teams/Team1/TeamSetting.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Teams/Team2/BoardColumns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/Teams/Team2/BoardColumns.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Teams/Team2/BoardRows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/Teams/Team2/BoardRows.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Teams/Team2/CardFields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/Teams/Team2/CardFields.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Teams/Team2/CardStyles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/Teams/Team2/CardStyles.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Teams/Team2/TeamSetting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/Teams/Team2/TeamSetting.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Teams/php Team/BoardColumns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/Teams/php Team/BoardColumns.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Teams/php Team/BoardRows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/Teams/php Team/BoardRows.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Teams/php Team/CardFields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/Teams/php Team/CardFields.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Teams/php Team/CardStyles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/Teams/php Team/CardStyles.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Teams/php Team/TeamSetting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/Teams/php Team/TeamSetting.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/WorkItems/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/WorkItems/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/WorkItems/Feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/WorkItems/Feature.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/WorkItems/Product Backlog Item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/WorkItems/Product Backlog Item.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-PHP/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/BuildDefinitions/Python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/BuildDefinitions/Python.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Dashboard/Queries/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/Dashboard/Queries/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Dashboard/Queries/Features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/Dashboard/Queries/Features.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Dashboard/Queries/Tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/Dashboard/Queries/Tasks.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/EnableEpic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/EnableEpic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Images/build-progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/Images/build-progress.gif -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Images/cd-tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/Images/cd-tasks.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Images/ci-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/Images/ci-pipeline.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Images/release-output.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/Images/release-output.gif -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Images/release-progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/Images/release-progress.gif -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/ReleaseDefinitions/Python-CD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/ReleaseDefinitions/Python-CD.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/ServiceEndpoints/Python-code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/ServiceEndpoints/Python-code.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Teams/Python Team/BoardRows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/Teams/Python Team/BoardRows.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Teams/Python Team/CardFields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/Teams/Python Team/CardFields.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Teams/Python Team/CardStyles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/Teams/Python Team/CardStyles.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Teams/Team1/BoardColumns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/Teams/Team1/BoardColumns.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Teams/Team1/BoardRows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/Teams/Team1/BoardRows.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Teams/Team1/CardFields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/Teams/Team1/CardFields.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Teams/Team1/CardStyles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/Teams/Team1/CardStyles.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Teams/Team1/TeamSetting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/Teams/Team1/TeamSetting.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Teams/Team2/BoardColumns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/Teams/Team2/BoardColumns.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Teams/Team2/BoardRows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/Teams/Team2/BoardRows.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Teams/Team2/CardFields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/Teams/Team2/CardFields.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Teams/Team2/CardStyles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/Teams/Team2/CardStyles.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Teams/Team2/TeamSetting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/Teams/Team2/TeamSetting.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Python/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/Dashboard/Queries/Bugs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-ReleaseGates/Dashboard/Queries/Bugs.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/EnableEpic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-ReleaseGates/EnableEpic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/Images/qam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-ReleaseGates/Images/qam.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/Images/querywi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-ReleaseGates/Images/querywi.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/Images/timeout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-ReleaseGates/Images/timeout.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-ReleaseGates/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-ReleaseGates/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-ReleaseGates/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/Teams/Team1/BoardRows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-ReleaseGates/Teams/Team1/BoardRows.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/Teams/Team1/CardFields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-ReleaseGates/Teams/Team1/CardFields.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/Teams/Team1/CardStyles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-ReleaseGates/Teams/Team1/CardStyles.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/Teams/Team2/BoardRows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-ReleaseGates/Teams/Team2/BoardRows.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/Teams/Team2/CardFields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-ReleaseGates/Teams/Team2/CardFields.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/Teams/Team2/CardStyles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-ReleaseGates/Teams/Team2/CardStyles.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-ReleaseGates/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/WorkItems/Bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-ReleaseGates/WorkItems/Bug.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/BuildDefinitions/Selenium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Selenium/BuildDefinitions/Selenium.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/Dashboard/Queries/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Selenium/Dashboard/Queries/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/Dashboard/Queries/Features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Selenium/Dashboard/Queries/Features.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/Dashboard/Queries/Tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Selenium/Dashboard/Queries/Tasks.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/EnableEpic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Selenium/EnableEpic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/Images/Buildsuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Selenium/Images/Buildsuccess.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/Images/dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Selenium/Images/dev.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/Images/seleniumtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Selenium/Images/seleniumtest.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/Images/testsuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Selenium/Images/testsuccess.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/ImportSourceCode/Selenium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Selenium/ImportSourceCode/Selenium.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Selenium/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Selenium/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Selenium/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Dashboard/Dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-SonarQube/Dashboard/Dashboard.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Dashboard/Queries/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-SonarQube/Dashboard/Queries/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Dashboard/Queries/Tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-SonarQube/Dashboard/Queries/Tasks.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/EnableEpic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-SonarQube/EnableEpic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-SonarQube/Extensions.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Images/analysis_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-SonarQube/Images/analysis_report.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Images/bug_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-SonarQube/Images/bug_details.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Images/build_configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-SonarQube/Images/build_configure.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Images/build_summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-SonarQube/Images/build_summary.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-SonarQube/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-SonarQube/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Teams/Team1/TeamSetting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-SonarQube/Teams/Team1/TeamSetting.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Teams/Team2/TeamSetting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-SonarQube/Teams/Team2/TeamSetting.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-SonarQube/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/WorkItems/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-SonarQube/WorkItems/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/WorkItems/Feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-SonarQube/WorkItems/Feature.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-SonarQube/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Terraform/Extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Terraform/Extensions.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Terraform/Images/Terraform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Terraform/Images/Terraform.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Terraform/Images/queuebuild.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Terraform/Images/queuebuild.gif -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Terraform/Images/releasetasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Terraform/Images/releasetasks.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Terraform/Images/releasetrigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Terraform/Images/releasetrigger.gif -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Terraform/Images/webapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Terraform/Images/webapp.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Terraform/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Terraform/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Terraform/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-Terraform/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/EnableEpic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-WhiteSource-Bolt/EnableEpic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/Extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-WhiteSource-Bolt/Extensions.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/Images/CI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-WhiteSource-Bolt/Images/CI.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-WhiteSource-Bolt/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-WhiteSource-Bolt/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-WhiteSource-Bolt/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-WhiteSource-Bolt/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-WhiteSource-Bolt/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/WorkItems/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-WhiteSource-Bolt/WorkItems/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/WorkItems/Feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-WhiteSource-Bolt/WorkItems/Feature.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/DL-WhiteSource-Bolt/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/EndpointKeyConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/EndpointKeyConfig.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Events.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/FA-IAC-migration/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/FA-IAC-migration/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/FA-IAC-migration/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/FA-IAC-migration/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/FA-IAC-migration/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/FA-IAC-migration/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/FA-IAC-migration/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/FA-IAC-migration/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/FA-IAC-migration/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/FA-IAC-migration/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/FA-IAC-migration/WorkItems/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/FA-IAC-migration/WorkItems/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/FA-IAC-migration/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/FA-IAC-migration/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-ContosoAir/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-ContosoAir/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-ContosoAir/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-ContosoAir/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-ContosoAir/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-ContosoAir/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-ContosoAir/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-ContosoAir/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-ContosoAir/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-ContosoAir/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-ContosoAir/WorkItems/Feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-ContosoAir/WorkItems/Feature.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-ContosoAir/WorkItems/User Story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-ContosoAir/WorkItems/User Story.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Dashboard/Dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-MyShuttle/Dashboard/Dashboard.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Dashboard/Queries/Bugs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-MyShuttle/Dashboard/Queries/Bugs.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Images/boards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-MyShuttle/Images/boards.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Images/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-MyShuttle/Images/dashboard.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Images/loginpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-MyShuttle/Images/loginpage.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-MyShuttle/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-MyShuttle/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-MyShuttle/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Teams/Team1/BoardRows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-MyShuttle/Teams/Team1/BoardRows.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Teams/Team1/CardFields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-MyShuttle/Teams/Team1/CardFields.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Teams/Team1/CardStyles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-MyShuttle/Teams/Team1/CardStyles.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Teams/Team2/BoardRows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-MyShuttle/Teams/Team2/BoardRows.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Teams/Team2/CardFields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-MyShuttle/Teams/Team2/CardFields.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Teams/Team2/CardStyles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-MyShuttle/Teams/Team2/CardStyles.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-MyShuttle/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/WorkItems/Bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-MyShuttle/WorkItems/Bug.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/WorkItems/Feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-MyShuttle/WorkItems/Feature.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-MyShuttle/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/WorkItems/Test Case.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-MyShuttle/WorkItems/Test Case.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/WorkItems/Test Plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-MyShuttle/WorkItems/Test Plan.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/WorkItems/Test Suite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-MyShuttle/WorkItems/Test Suite.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-PartsUnlimited/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-PartsUnlimited/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-PartsUnlimited/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-PartsUnlimited/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-PartsUnlimited/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-PartsUnlimited/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-PartsUnlimited/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-PartsUnlimited/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-PartsUnlimited/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-PartsUnlimited/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-PartsUnlimited/WorkItems/Bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-PartsUnlimited/WorkItems/Bug.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-PartsUnlimited/WorkItems/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-PartsUnlimited/WorkItems/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-PartsUnlimited/WorkItems/Feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-PartsUnlimited/WorkItems/Feature.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-PartsUnlimited/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-PartsUnlimited/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-Tailwind Traders/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-Tailwind Traders/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-Tailwind Traders/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-Tailwind Traders/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-Tailwind Traders/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-Tailwind Traders/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-Tailwind Traders/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-Tailwind Traders/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-Tailwind Traders/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-Tailwind Traders/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Dashboard.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-eShopOnWeb/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-eShopOnWeb/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-eShopOnWeb/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-eShopOnWeb/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-eShopOnWeb/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/TestPlans/TestPlan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-eShopOnWeb/TestPlans/TestPlan.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/WorkItems/Bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-eShopOnWeb/WorkItems/Bug.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/WorkItems/Epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-eShopOnWeb/WorkItems/Epic.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/WorkItems/Feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-eShopOnWeb/WorkItems/Feature.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/WorkItems/Task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-eShopOnWeb/WorkItems/Task.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/WorkItems/Test Case.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-eShopOnWeb/WorkItems/Test Case.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/WorkItems/User Story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/Gen-eShopOnWeb/WorkItems/User Story.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Create-Build-Pipeline/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Create-Build-Pipeline/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Create-Build-Pipeline/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Create-Build-Pipeline/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Deploy-Docker-Template/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Deploy-Docker-Template/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Host-Build-Agent/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Host-Build-Agent/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Host-Build-Agent/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Host-Build-Agent/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Host-Build-Agent/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Host-Build-Agent/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Host-Build-Agent/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Host-Build-Agent/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Host-Build-Agent/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Host-Build-Agent/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Host-Build-Agent/WorkItems/Issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Host-Build-Agent/WorkItems/Issue.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Implement-Code-Workflow/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Implement-Code-Workflow/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Run-Quality-Tests/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Run-Quality-Tests/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Run-Quality-Tests/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Run-Quality-Tests/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Run-Quality-Tests/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Run-Quality-Tests/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Scan-Open-Source/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Scan-Open-Source/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Scan-Open-Source/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Scan-Open-Source/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Scan-Open-Source/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Scan-Open-Source/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Scan-Open-Source/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Scan-Open-Source/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Scan-Open-Source/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Scan-Open-Source/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Scan-Open-Source/WorkItems/Issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Scan-Open-Source/WorkItems/Issue.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-DeliveryPlans/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-SpaceGame-DeliveryPlans/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-Release/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-SpaceGame-web-Release/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-Release/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-SpaceGame-web-Release/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-Terraform/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-SpaceGame-web-Terraform/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Test-bicep/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Test-bicep/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Test-bicep/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Test-bicep/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Toy-reusable/Iterations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Toy-reusable/Iterations.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Toy-reusable/ProjectSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Toy-reusable/ProjectSettings.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Toy-reusable/ProjectTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Toy-reusable/ProjectTemplate.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Toy-reusable/TeamArea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Toy-reusable/TeamArea.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Toy-reusable/Teams/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MSL-Toy-reusable/Teams/Teams.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MovePages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/MovePages.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/SampleContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/SampleContent.json -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/Ansible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/Ansible.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/AzureCommunity/iac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/AzureCommunity/iac.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/AzureCommunity/modiot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/AzureCommunity/modiot.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/AzureDevOps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/AzureDevOps.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/AzureFunction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/AzureFunction.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/CloudAdoptionFramework.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/CloudAdoptionFramework.jpg -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/CodeFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/CodeFile.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/ContosAir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/ContosAir.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/Docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/Docker.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/Dynatrace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/Dynatrace.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/GitHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/GitHub.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/MachineLearning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/MachineLearning.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/MyHealthClinic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/MyHealthClinic.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/MyShuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/MyShuttle.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/PHP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/PHP.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/Partunlimited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/Partunlimited.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/Python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/Python.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/SmartHotel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/SmartHotel.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/SonarQube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/SonarQube.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/TailwindTraders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/TailwindTraders.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/Terraform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/Terraform.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/WhiteSourceBolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/WhiteSourceBolt.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/devopsdojo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/devopsdojo.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/eShop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/eShop.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/key-vault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/key-vault.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/kubernetes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/kubernetes.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/launchdarkly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/launchdarkly.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/mslearn/deploy-docker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/mslearn/deploy-docker.svg -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/mslearn/generic-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/mslearn/generic-badge.svg -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/mslearn/testbicep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/mslearn/testbicep.svg -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/octopus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/octopus.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/policy-org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/policy-org.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/selenium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateImages/selenium.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateSetting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/Templates/TemplateSetting.json -------------------------------------------------------------------------------- /src/ADOGenerator/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/ADOGenerator/appsettings.json -------------------------------------------------------------------------------- /src/API/ADOConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/ADOConfiguration.cs -------------------------------------------------------------------------------- /src/API/API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/API.csproj -------------------------------------------------------------------------------- /src/API/ApiServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/ApiServiceBase.cs -------------------------------------------------------------------------------- /src/API/Builds/BuildDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Builds/BuildDefinition.cs -------------------------------------------------------------------------------- /src/API/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Class1.cs -------------------------------------------------------------------------------- /src/API/DeliveryPlans/Plans.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/DeliveryPlans/Plans.cs -------------------------------------------------------------------------------- /src/API/DeploymentGRoup/DeploymentGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/DeploymentGRoup/DeploymentGroup.cs -------------------------------------------------------------------------------- /src/API/ExtensionManagement/GetListExtenison.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/ExtensionManagement/GetListExtenison.cs -------------------------------------------------------------------------------- /src/API/Extractor/ClassificationNodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Extractor/ClassificationNodes.cs -------------------------------------------------------------------------------- /src/API/Extractor/GetBuildandReleaseDefs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Extractor/GetBuildandReleaseDefs.cs -------------------------------------------------------------------------------- /src/API/Extractor/GetWorkItemsCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Extractor/GetWorkItemsCount.cs -------------------------------------------------------------------------------- /src/API/Extractor/ProjectProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Extractor/ProjectProperties.cs -------------------------------------------------------------------------------- /src/API/Extractor/VariableGroups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Extractor/VariableGroups.cs -------------------------------------------------------------------------------- /src/API/Git/GitHubImportRepo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Git/GitHubImportRepo.cs -------------------------------------------------------------------------------- /src/API/Git/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Git/Repository.cs -------------------------------------------------------------------------------- /src/API/IADOConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/IADOConfiguration.cs -------------------------------------------------------------------------------- /src/API/JSON/CreateBuildDefination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/JSON/CreateBuildDefination.json -------------------------------------------------------------------------------- /src/API/JSON/CreateTeam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/JSON/CreateTeam.json -------------------------------------------------------------------------------- /src/API/JSON/CreateTeamProject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/JSON/CreateTeamProject.json -------------------------------------------------------------------------------- /src/API/JSON/GetRepository.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/JSON/GetRepository.json -------------------------------------------------------------------------------- /src/API/JSON/ReleaseDefination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/JSON/ReleaseDefination.json -------------------------------------------------------------------------------- /src/API/JSON/WorkItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/JSON/WorkItem.json -------------------------------------------------------------------------------- /src/API/JSON/WorkItemNew.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/JSON/WorkItemNew.json -------------------------------------------------------------------------------- /src/API/ProjectsAndTeams/Accounts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/ProjectsAndTeams/Accounts.cs -------------------------------------------------------------------------------- /src/API/ProjectsAndTeams/GetAllGroups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/ProjectsAndTeams/GetAllGroups.cs -------------------------------------------------------------------------------- /src/API/ProjectsAndTeams/Projects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/ProjectsAndTeams/Projects.cs -------------------------------------------------------------------------------- /src/API/ProjectsAndTeams/TeamIteration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/ProjectsAndTeams/TeamIteration.cs -------------------------------------------------------------------------------- /src/API/ProjectsAndTeams/Teams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/ProjectsAndTeams/Teams.cs -------------------------------------------------------------------------------- /src/API/QueriesAndWidgets/Queries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/QueriesAndWidgets/Queries.cs -------------------------------------------------------------------------------- /src/API/Queues/Queue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Queues/Queue.cs -------------------------------------------------------------------------------- /src/API/ReleasesDef/ReleaseDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/ReleasesDef/ReleaseDefinition.cs -------------------------------------------------------------------------------- /src/API/Service/ServiceEndPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Service/ServiceEndPoint.cs -------------------------------------------------------------------------------- /src/API/Services/HttpServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Services/HttpServices.cs -------------------------------------------------------------------------------- /src/API/TestManagement/TestManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/TestManagement/TestManagement.cs -------------------------------------------------------------------------------- /src/API/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Utility.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/BaseViewModel.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/BranchPolicy/BranchPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/BranchPolicy/BranchPolicy.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/BranchPolicy/BranchPolicyTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/BranchPolicy/BranchPolicyTypes.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Builds/BuildGetListofBuildDefinitionsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Builds/BuildGetListofBuildDefinitionsResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/BoardColumnResponseAgile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/BoardColumnResponseAgile.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/BoardColumnResponseBasic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/BoardColumnResponseBasic.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/BoardColumnResponseScrum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/BoardColumnResponseScrum.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/BuildDefinitionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/BuildDefinitionResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/BuildDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/BuildDefinitions.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/ExportBoardRows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/ExportBoardRows.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/GetBuildDefResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/GetBuildDefResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/GetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/GetExtensions.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/GetINumIteration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/GetINumIteration.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/GetProcessTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/GetProcessTemplate.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/GetQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/GetQueries.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/GetReleaseDefResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/GetReleaseDefResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/GetServiceEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/GetServiceEndpoints.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/GetTeamSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/GetTeamSetting.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/GetVariableGroups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/GetVariableGroups.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/GetWorkItemsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/GetWorkItemsResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/Iterations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/Iterations.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/IterationtoSave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/IterationtoSave.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/KeyConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/KeyConfig.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/ProjectSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/ProjectSetting.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/ReleaseDefCountResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/ReleaseDefCountResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/ReleaseDefResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/ReleaseDefResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/RepositoryList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/RepositoryList.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/Teams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/Teams.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/WorkItemFetchResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/WorkItemFetchResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/WorkItemNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Extractor/WorkItemNames.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/GitHub/ForkRepos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/GitHub/ForkRepos.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/GitHub/GitHubRepoResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/GitHub/GitHubRepoResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Importer/ImportBoardColumns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Importer/ImportBoardColumns.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Importer/ImportBoardRows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Importer/ImportBoardRows.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Importer/ImportCardFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Importer/ImportCardFields.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Importer/ImpotCardStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Importer/ImpotCardStyle.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Importer/IncludeSubAreas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Importer/IncludeSubAreas.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Plans/APlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Plans/APlan.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Plans/DeliveryPlans.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Plans/DeliveryPlans.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/ProjectAndTeams/AccountMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/ProjectAndTeams/AccountMembers.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/ProjectAndTeams/GetTeamResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/ProjectAndTeams/GetTeamResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/ProjectAndTeams/ListofProjectsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/ProjectAndTeams/ListofProjectsResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/ProjectAndTeams/TeamIterationsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/ProjectAndTeams/TeamIterationsResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/ProjectAndTeams/TeamMemberResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/ProjectAndTeams/TeamMemberResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/ProjectAndTeams/TeamResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/ProjectAndTeams/TeamResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/ProjectAndTeams/TeamSettingResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/ProjectAndTeams/TeamSettingResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/QueriesAndWidgets/DashBoardeTagResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/QueriesAndWidgets/DashBoardeTagResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/QueriesAndWidgets/DashboardResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/QueriesAndWidgets/DashboardResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/QueriesAndWidgets/QueryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/QueriesAndWidgets/QueryResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Queue/QueueModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Queue/QueueModel.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/ReleaseDefinition/ReleaseDefinitionsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/ReleaseDefinition/ReleaseDefinitionsResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Repository/GetAllRepositoriesResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Repository/GetAllRepositoriesResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Repository/PullRequestComments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Repository/PullRequestComments.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Service/ServiceEndpointModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Service/ServiceEndpointModel.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Sprint/SprintResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Sprint/SprintResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Wiki/CodewikiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Wiki/CodewikiResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/Wiki/ProjectwikiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/Wiki/ProjectwikiResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/WorkItem/BatchRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/WorkItem/BatchRequest.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/WorkItem/CardStylesPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/WorkItem/CardStylesPatch.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/WorkItem/ColumnPost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/WorkItem/ColumnPost.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/WorkItem/CreateUpdateNodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/WorkItem/CreateUpdateNodeViewModel.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/WorkItem/GetBoardColumnResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/WorkItem/GetBoardColumnResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/WorkItem/GetBoardColumnResponseAgile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/WorkItem/GetBoardColumnResponseAgile.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/WorkItem/GetCardFieldResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/WorkItem/GetCardFieldResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/WorkItem/GetNodeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/WorkItem/GetNodeResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/WorkItem/GetNodesResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/WorkItem/GetNodesResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/WorkItem/GetWorkItemsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/WorkItem/GetWorkItemsResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/WorkItem/ImportWorkItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/WorkItem/ImportWorkItemModel.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/WorkItem/ReturnException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/WorkItem/ReturnException.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/WorkItem/SetEpicSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/WorkItem/SetEpicSettings.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/WorkItem/WorkItemBatchPostResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/WorkItem/WorkItemBatchPostResponse.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/WorkItem/WorkItemPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/WorkItem/WorkItemPatch.cs -------------------------------------------------------------------------------- /src/API/Viewmodel/WorkItem/WorkItemPatchResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Viewmodel/WorkItem/WorkItemPatchResponse.cs -------------------------------------------------------------------------------- /src/API/Wiki/ManageWiki.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/Wiki/ManageWiki.cs -------------------------------------------------------------------------------- /src/API/WorkItemAndTracking/BoardColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/WorkItemAndTracking/BoardColumn.cs -------------------------------------------------------------------------------- /src/API/WorkItemAndTracking/Cards.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/WorkItemAndTracking/Cards.cs -------------------------------------------------------------------------------- /src/API/WorkItemAndTracking/ClassificationNodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/WorkItemAndTracking/ClassificationNodes.cs -------------------------------------------------------------------------------- /src/API/WorkItemAndTracking/ImportWorkItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/WorkItemAndTracking/ImportWorkItems.cs -------------------------------------------------------------------------------- /src/API/WorkItemAndTracking/IssueWI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/WorkItemAndTracking/IssueWI.cs -------------------------------------------------------------------------------- /src/API/WorkItemAndTracking/SwimLanes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/WorkItemAndTracking/SwimLanes.cs -------------------------------------------------------------------------------- /src/API/WorkItemAndTracking/WorkItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/WorkItemAndTracking/WorkItem.cs -------------------------------------------------------------------------------- /src/API/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/app.config -------------------------------------------------------------------------------- /src/API/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/src/API/packages.config -------------------------------------------------------------------------------- /style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/HEAD/style.scss --------------------------------------------------------------------------------