├── .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.md: -------------------------------------------------------------------------------- 1 | --- 2 | **Don't remove this content** 3 | 4 | title: 'Reporting issue on .Net Core platform' 5 | lables: core 6 | assignees: aksh-h 7 | 8 | --- 9 | -------------------------------------------------------------------------------- /docs/Images/AdvancedSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/docs/Images/AdvancedSettings.png -------------------------------------------------------------------------------- /docs/Images/AppDetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/docs/Images/AppDetails.png -------------------------------------------------------------------------------- /docs/Images/ChooseAPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/docs/Images/ChooseAPI.png -------------------------------------------------------------------------------- /docs/Images/ChoosePermission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/docs/Images/ChoosePermission.png -------------------------------------------------------------------------------- /src/ADOGenerator/IServices/ITemplateService.cs: -------------------------------------------------------------------------------- 1 | using ADOGenerator.Models; 2 | 3 | namespace ADOGenerator.IServices 4 | { 5 | public interface ITemplateService 6 | { 7 | bool AnalyzeProject(Project model); 8 | bool CheckTemplateExists(Project model); 9 | (bool,string,string) GenerateTemplateArtifacts(Project model); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/ADOGenerator/Models/AccessDetails.cs: -------------------------------------------------------------------------------- 1 | namespace ADOGenerator.Models 2 | { 3 | public class AccessDetails 4 | { 5 | public string access_token { get; set; } 6 | public string token_type { get; set; } 7 | public string expires_in { get; set; } 8 | public string refresh_token { get; set; } 9 | } 10 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Models/Query.cs: -------------------------------------------------------------------------------- 1 | namespace ADOGenerator.Models 2 | { 3 | public class Query 4 | { 5 | public string name { get; set; } 6 | public string wiql { get; set; } 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Models/ReadUser.cs: -------------------------------------------------------------------------------- 1 | namespace ADOGenerator.Models 2 | { 3 | public class ReadUser 4 | { 5 | public class User 6 | { 7 | public IList Users { get; set; } 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /src/ADOGenerator/PreSetting/CreateQueryFolder.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "$TeamName$", 3 | "isFolder": true 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/PreSetting/GitHubEndPoint.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": { 3 | 4 | }, 5 | "name": "$Name$", 6 | "type": "git", 7 | "url": "$GitHubURL$", 8 | "authorization": { 9 | "scheme": "UsernamePassword", 10 | "parameters": { 11 | "username": "$GitUserName$", 12 | "password": "$GitUserPassword$" 13 | } 14 | }, 15 | "isReady": true 16 | } -------------------------------------------------------------------------------- /src/ADOGenerator/PreSetting/ImportSourceCode.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "$Host$/_git/$Repo$" 5 | }, 6 | "serviceEndpointId": "$$Repo$-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/PreSetting/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "$type$", 3 | "id": "$id$", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/PreSetting/ServiceEndPoint.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": { 3 | 4 | }, 5 | "name": "$Repo$-code", 6 | "type": "git", 7 | "url": "$Host$/_git/$Repo$", 8 | "authorization": { 9 | "scheme": "UsernamePassword", 10 | "parameters": { 11 | "username": "$username$", 12 | "password": "$password$" 13 | } 14 | }, 15 | "isReady": true 16 | } -------------------------------------------------------------------------------- /src/ADOGenerator/PreSetting/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-AzureSentinel/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "id": "adcc42ab-9882-485e-a3ed-7678f01f66bc", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-AzureSentinel/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-AzureSentinel/Teams/AzureSentinelDeployment Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-AzureSentinel/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "8edca2f3-18c7-416b-9739-1e294543fa11", 4 | "name": "AzureSentinelDeployment Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-NIST800171Rev2/Dashboard/Queries/All items, all states.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All items, all states", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] <> '' and [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-NIST800171Rev2/Dashboard/Queries/Assigned to me.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Assigned to me", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.AssignedTo] = @me order by [System.ChangedDate] desc" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-NIST800171Rev2/Dashboard/Queries/Followed work items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Followed work items", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath] from WorkItems where [System.Id] in (@Follows)" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-NIST800171Rev2/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "id": "adcc42ab-9882-485e-a3ed-7678f01f66bc", 4 | "users": [], 5 | "userAssignment": "Any" 6 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-NIST800171Rev2/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-NIST800171Rev2/Teams/NIST 800-171 Template Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-NIST800171Rev2/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "87c3234e-01e7-411d-ae0d-0b8cb6831a93", 4 | "name": "NIST 800-171 Template Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-SapOnAzure/Dashboard/Dashboard.json: -------------------------------------------------------------------------------- 1 | "text" -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-SapOnAzure/Dashboard/Queries/Assigned to me.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Assigned to me", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.AssignedTo] = @me order by [System.ChangedDate] desc" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-SapOnAzure/Dashboard/Queries/Followed work items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Followed work items", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath] from WorkItems where [System.Id] in (@Follows)" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-SapOnAzure/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "id": "adcc42ab-9882-485e-a3ed-7678f01f66bc", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-SapOnAzure/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-SapOnAzure/Teams/SAP on Azure quick-start guide Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-SapOnAzure/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "e386c158-ca32-4306-ba7b-eb690e8e3611", 4 | "name": "SAP on Azure quick-start guide Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-WVDGuidance/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "id": "adcc42ab-9882-485e-a3ed-7678f01f66bc", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-WVDGuidance/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-WVDGuidance/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "1c3028ac-1303-428f-b817-f2486bb24624", 4 | "name": "WVD Guidance Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/AC-WVDGuidance/Teams/WVD Guidance Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/Dashboard/Queries/All Tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All Tasks", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Task' and [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/Dashboard/Queries/All items, all states.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All items, all states", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] <> '' and [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/Dashboard/Queries/Followed work items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Followed work items", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath] from WorkItems where [System.Id] in (@Follows)" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "id": "adcc42ab-9882-485e-a3ed-7678f01f66bc", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/Teams/CAF ADO Strategy-Plan-Ready-Gov Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "0a41b00d-9112-41bd-bfd4-866dc83a5487", 4 | "name": "CAF ADO Strategy-Plan-Ready-Gov Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AKS_CAF/Dashboard/Dashboard.json: -------------------------------------------------------------------------------- 1 | "text" -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AKS_CAF/Dashboard/Queries/Assigned to me.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Assigned to me", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.AssignedTo] = @me order by [System.ChangedDate] desc" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AKS_CAF/Dashboard/Queries/Followed work items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Followed work items", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath] from WorkItems where [System.Id] in (@Follows)" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AKS_CAF/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "id": "adcc42ab-9882-485e-a3ed-7678f01f66bc", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AKS_CAF/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AKS_CAF/Teams/AKA_Project Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AKS_CAF/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "1b2a9e5c-ba5c-4aa4-affe-416f7c5ba2ae", 4 | "name": "AKA_Project Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AzureGovernance/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "id": "adcc42ab-9882-485e-a3ed-7678f01f66bc", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AzureGovernance/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AzureGovernance/Teams/Azure Governance - CAF Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AzureGovernance/Teams/Azure Governance Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-AzureGovernance/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "93f80b43-69fd-479c-a829-dbf37fb75c7f", 4 | "name": "Azure Governance - CAF Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/Dashboard/Queries/All items, all states.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All items, all states", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] <> '' and [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/Dashboard/Queries/Assigned to me.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Assigned to me", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.AssignedTo] = @me order by [System.ChangedDate] desc" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/Dashboard/Queries/Followed work items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Followed work items", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath] from WorkItems where [System.Id] in (@Follows)" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/Images/Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/Images/Overview.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/Images/Website.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/Images/Website.PNG -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": null, 3 | "name": null, 4 | "structureType": null, 5 | "hasChildren": false 6 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "users": [ "ckelly109@outlook.com", "craig109@outlook.com", "nmunger109@outlook.com", "lsteel109@outlook.com" ] 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/Teams/Cloud Adoption Plan Master Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-CloudAdoptionPlan/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "b011953e-3647-46e7-acd7-641521781cfb", 4 | "name": "Cloud Adoption Plan Master Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-KnowledgeMining/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "id": "adcc42ab-9882-485e-a3ed-7678f01f66bc", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-KnowledgeMining/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-KnowledgeMining/Teams/Knowledge Mining Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-KnowledgeMining/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "aa680ee6-beac-475c-978d-4a346104b572", 4 | "name": "Knowledge Mining Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernDataAnalytics/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "id": "adcc42ab-9882-485e-a3ed-7678f01f66bc", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernDataAnalytics/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernDataAnalytics/Teams/Modern Data Analytics Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernDataAnalytics/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "d8b5b27c-795b-4e17-8d82-5eb2bc2bd374", 4 | "name": "Modern Data Analytics Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernDataWarehouse/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "id": "adcc42ab-9882-485e-a3ed-7678f01f66bc", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernDataWarehouse/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernDataWarehouse/Teams/Modern Data Warehouse Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernDataWarehouse/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "42002a9d-68d1-4587-9781-0cb6d3e92a76", 4 | "name": "Modern Data Warehouse Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernIOT/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "id": "adcc42ab-9882-485e-a3ed-7678f01f66bc", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernIOT/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernIOT/Teams/Modern IOT Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ModernIOT/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "777159df-ff7f-41ac-9bdf-c2e655a07de7", 4 | "name": "Modern IOT Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-RetailRecommender-SolutionAccelerator/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "id": "adcc42ab-9882-485e-a3ed-7678f01f66bc", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-RetailRecommender-SolutionAccelerator/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-RetailRecommender-SolutionAccelerator/Teams/Retail Recommender - Solution Accelerator Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-RetailRecommender-SolutionAccelerator/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "328d2a46-f573-47b9-8dd0-0e1747a2014a", 4 | "name": "Retail Recommender - Solution Accelerator Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SQL_Migration/Dashboard/Dashboard.json: -------------------------------------------------------------------------------- 1 | "text" -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SQL_Migration/Dashboard/Queries/Assigned to me.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Assigned to me", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.AssignedTo] = @me order by [System.ChangedDate] desc" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SQL_Migration/Dashboard/Queries/Followed work items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Followed work items", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath] from WorkItems where [System.Id] in (@Follows)" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SQL_Migration/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "id": "adcc42ab-9882-485e-a3ed-7678f01f66bc", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SQL_Migration/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SQL_Migration/Teams/SQL Proj - Azure BG Test Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SQL_Migration/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "77257c73-0a3c-4afd-9a58-dd4664d4a402", 4 | "name": "SQL Proj - Azure BG Test Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SecureResearch/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "id": "adcc42ab-9882-485e-a3ed-7678f01f66bc", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SecureResearch/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SecureResearch/Teams/Secure Research Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-SecureResearch/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "22490fe2-94f4-46cd-ab10-927e965680fb", 4 | "name": "Secure Research Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ServerMigration/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "id": "adcc42ab-9882-485e-a3ed-7678f01f66bc", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ServerMigration/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ServerMigration/Teams/SQL Proj - Azure BG Test Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ServerMigration/Teams/Server_Migration_Project Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-ServerMigration/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "3ca0e469-0d6e-47fe-953c-3ae49629f44f", 4 | "name": "Server_Migration_Project Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-UnifiedDataGovernance/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "id": "adcc42ab-9882-485e-a3ed-7678f01f66bc", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-UnifiedDataGovernance/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-UnifiedDataGovernance/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "5cf18184-86f6-404c-a7fe-b84f8caa2df1", 4 | "name": "Unified Data Governance Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-UnifiedDataGovernance/Teams/Unified Data Governance Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-WindowsVirtualDesktop/Dashboard/Dashboard.json: -------------------------------------------------------------------------------- 1 | "text" -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-WindowsVirtualDesktop/Dashboard/Queries/All Workitems.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All Workitems", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from Workitems where [System.TeamProject] = @project and [System.WorkItemType] <> '' and [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-WindowsVirtualDesktop/Dashboard/Queries/Assigned to me.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Assigned to me", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.AssignedTo] = @me order by [System.ChangedDate] desc" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-WindowsVirtualDesktop/Dashboard/Queries/Followed work items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Followed work items", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath] from WorkItems where [System.Id] in (@Follows)" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-WindowsVirtualDesktop/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "id": "adcc42ab-9882-485e-a3ed-7678f01f66bc", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-WindowsVirtualDesktop/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-WindowsVirtualDesktop/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "aa792b1d-2c72-47d2-ad71-173549e3655d", 4 | "name": "Windows Virtual Desktop Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-WindowsVirtualDesktop/Teams/WVD-CAF-Project-Template Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CAF-WindowsVirtualDesktop/Teams/Windows Virtual Desktop Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CreateProject.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "$projectName$", 3 | "description": "Generated by Azure DevOps Demo Generator", 4 | "capabilities": { 5 | "versioncontrol": { 6 | "sourceControlType": "Git" 7 | }, 8 | "processTemplate": { 9 | "templateTypeId": "$processTemplateId$" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/CreateWiki.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "projectWiki", 3 | "name": "$Name$_wiki", 4 | "projectId": "$ProjectID$" 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Dashboard/Queries/All Work Items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All Work Items", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] <> '' AND [System.State] <> ''" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Dashboard/Queries/Epic.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Epics", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Epic' ORDER BY [System.ChangedDate] DESC" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Dashboard/Queries/Features.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Feature", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Feature' AND [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Dashboard/Queries/Product Backlog Items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Product Backlog Items", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Product Backlog Item' AND [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Dashboard/Queries/Tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tasks", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Task' ORDER BY [System.ChangedDate] DESC" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/EnableEpic.json: -------------------------------------------------------------------------------- 1 | { 2 | "backlogVisibilities": { 3 | "Microsoft.EpicCategory": true, 4 | "Microsoft.FeatureCategory": true, 5 | "Microsoft.RequirementCategory": true 6 | } 7 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Images/AKS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-AKS/Images/AKS.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Images/aksdashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-AKS/Images/aksdashboard.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Images/finalresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-AKS/Images/finalresult.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Images/update_CD3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-AKS/Images/update_CD3.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Images/updateprocessbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-AKS/Images/updateprocessbd.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/ImportSourceCode/AKS.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": 3 | { 4 | "gitSource": 5 | { 6 | "url": "https://dev.azure.com/vstsdemodata/AKS/_git/AKS" 7 | }, 8 | "serviceEndpointId": "$AKS-code$", 9 | "deleteServiceEndpointAfterImportIsDone": true 10 | } 11 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Scrum", 3 | "users": [] 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Teams/Azure Kubernetes Service Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Teams/Team1/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AKS/Teams/Team2/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Ansible/Images/browseweb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Ansible/Images/browseweb.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Ansible/Images/cd-queue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Ansible/Images/cd-queue.gif -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Ansible/Images/ci-queue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Ansible/Images/ci-queue.gif -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Ansible/Images/logintosite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Ansible/Images/logintosite.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Ansible/Images/playbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Ansible/Images/playbook.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Ansible/ImportSourceCode/SmartHotel360-CouponManagement.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://dev.azure.com/vstsdemodata/Ansible/_git/SmartHotel360-CouponManagement" 5 | }, 6 | "serviceEndpointId": "$Ansible-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Ansible/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "users": [ "ckelly109@outlook.com", "craig109@outlook.com", "nmunger109@outlook.com", "lsteel109@outlook.com" ] 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Ansible/ProjectTemplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "Generated by Azure DevOps Demo Generator", 3 | "Teams": "Teams.json", 4 | "BoardColumns": "BoardColumns.json", 5 | "ProjectSettings": "ProjectSettings.json", 6 | "CardStyle": "CardStyles.json", 7 | "CardField": "CardFields.json", 8 | "TemplateVersion": "2.0" 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Ansible/Teams/Ansible Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Ansible/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "1c340aca-25b9-4ebc-847c-47fdc294b886", 4 | "name": "Ansible Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AzureFunctions/EnableEpic.json: -------------------------------------------------------------------------------- 1 | { 2 | "backlogVisibilities": { 3 | "Microsoft.EpicCategory": true, 4 | "Microsoft.FeatureCategory": true, 5 | "Microsoft.RequirementCategory": true 6 | } 7 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AzureFunctions/Images/createfunctionapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-AzureFunctions/Images/createfunctionapp.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AzureFunctions/Images/deploysite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-AzureFunctions/Images/deploysite.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AzureFunctions/Images/projectcreation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-AzureFunctions/Images/projectcreation.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AzureFunctions/Images/pulwebsite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-AzureFunctions/Images/pulwebsite.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AzureFunctions/ImportSourceCode/AzureFunctions.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": 3 | { 4 | "gitSource": 5 | { 6 | "url": "https://dev.azure.com/vstsdemodata/AzureFunctions/_git/AzureFunctions" 7 | }, 8 | "serviceEndpointId": "$AzureFunctions-code$", 9 | "deleteServiceEndpointAfterImportIsDone": true 10 | } 11 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AzureFunctions/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "users": [] 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AzureFunctions/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AzureFunctions/Teams/Azure Functions Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AzureFunctions/Teams/Team1/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-AzureFunctions/Teams/Team2/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/Dashboard/Queries/All Work Items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All Work Items", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] <> '' AND [System.State] <> ''" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/Dashboard/Queries/Epic.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Epics", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Epic' ORDER BY [System.ChangedDate] DESC" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/Dashboard/Queries/Features.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Feature", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Feature' AND [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/Dashboard/Queries/Product Backlog Items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Product Backlog Items", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Product Backlog Item' AND [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/Dashboard/Queries/Tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tasks", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Task' ORDER BY [System.ChangedDate] DESC" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/EnableEpic.json: -------------------------------------------------------------------------------- 1 | { 2 | "backlogVisibilities": { 3 | "Microsoft.EpicCategory": true, 4 | "Microsoft.FeatureCategory": true, 5 | "Microsoft.RequirementCategory": true 6 | } 7 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/Images/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-DeploymentGroups/Images/application.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/Images/dgscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-DeploymentGroups/Images/dgscript.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/Images/differentphases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-DeploymentGroups/Images/differentphases.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/ImportSourceCode/DeploymentGroup.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://dev.azure.com/vstsdemodata/Deployment%20Groups/_git/DeploymentGroup" 5 | }, 6 | "serviceEndpointId": "$DeploymentGroup-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Scrum", 3 | "users": [] 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/ProjectTemplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "Generated by Azure DevOps Demo Generator", 3 | "Teams": "Teams.json", 4 | "BoardColumns": "BoardColumns.json", 5 | "ProjectSettings": "ProjectSettings.json", 6 | "CardStyle": "CardStyles.json", 7 | "CardField": "CardFields.json", 8 | "TemplateVersion": "2.0" 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/Teams/Deployment Group Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/Teams/Team1/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-DeploymentGroups/Teams/Team2/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Dashboard/Queries/All Work Items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All Work Items", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] <> '' AND [System.State] <> ''" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Dashboard/Queries/Epic.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Epics", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Epic' ORDER BY [System.ChangedDate] DESC" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Dashboard/Queries/Features.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Feature", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Feature' AND [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Dashboard/Queries/Product Backlog Items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Product Backlog Items", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Product Backlog Item' AND [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Dashboard/Queries/Tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tasks", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Task' ORDER BY [System.ChangedDate] DESC" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/EnableEpic.json: -------------------------------------------------------------------------------- 1 | { 2 | "backlogVisibilities": { 3 | "Microsoft.EpicCategory": true, 4 | "Microsoft.FeatureCategory": true, 5 | "Microsoft.RequirementCategory": true 6 | } 7 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Images/buildresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Docker/Images/buildresult.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Images/buildtasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Docker/Images/buildtasks.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Images/finalresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Docker/Images/finalresult.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Images/release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Docker/Images/release.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/ImportSourceCode/Docker.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": 3 | { 4 | "gitSource": 5 | { 6 | "url": "https://dev.azure.com/vstsdemodata/Docker/_git/Docker" 7 | }, 8 | "serviceEndpointId": "$Docker-code$", 9 | "deleteServiceEndpointAfterImportIsDone": true 10 | } 11 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Scrum", 3 | "users": [] 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Teams/Docker Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Teams/Team1/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Docker/Teams/Team2/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Keyvault/ImportSourceCode/azure-key-vault.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://dev.azure.com/vstsdemodata/azure-key-vault/_git/azure-key-vault" 5 | }, 6 | "serviceEndpointId": "$azure-key-vault-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Keyvault/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "users": [ "ckelly109@outlook.com", "craig109@outlook.com", "nmunger109@outlook.com", "lsteel109@outlook.com" ] 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Keyvault/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Keyvault/Teams/SmartHotel-CouponManagement Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Keyvault/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "9784fa20-5970-401d-b8fc-da0f5968a170", 4 | "name": "SmartHotel-CouponManagement Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-LaunchDarkly/Images/CD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-LaunchDarkly/Images/CD.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-LaunchDarkly/Images/browseapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-LaunchDarkly/Images/browseapp.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-LaunchDarkly/Images/buildandrelease.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-LaunchDarkly/Images/buildandrelease.gif -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-LaunchDarkly/ImportSourceCode/LaunchDarkly.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://dev.azure.com/vstsdemodata/LaunchDarkly-Updated/_git/LaunchDarkly" 5 | }, 6 | "serviceEndpointId": "$LaunchDarkly-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-LaunchDarkly/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "users": [], 4 | "userAssignment": "Any" 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-MachineLearning/Images/CI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-MachineLearning/Images/CI.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-MachineLearning/Images/Items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-MachineLearning/Images/Items.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-MachineLearning/Images/aml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-MachineLearning/Images/aml.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-MachineLearning/Images/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-MachineLearning/Images/workflow.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-MachineLearning/ImportSourceCode/DevOps-for-AI.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://dev.azure.com/vstsdemodata/DevOps-for-AI/_git/DevOps-for-AI" 5 | }, 6 | "serviceEndpointId": "$DevOps-for-AI-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-MachineLearning/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "users": [ "ckelly109@outlook.com", "craig109@outlook.com", "nmunger109@outlook.com", "lsteel109@outlook.com" ] 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-MachineLearning/ProjectTemplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "Generated by Azure DevOps Demo Generator", 3 | "Teams": "Teams.json", 4 | "ProjectSettings": "ProjectSettings.json", 5 | "TeamArea": "TeamArea.json" 6 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-MachineLearning/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-MachineLearning/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "DB Team", 4 | "description": "" 5 | }, 6 | { 7 | "name": "Web Team", 8 | "description": "" 9 | } 10 | ] 11 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Dashboard/Queries/All Work Items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All Work Items", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] <> '' AND [System.State] <> ''" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Dashboard/Queries/Epic.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Epics", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Epic' ORDER BY [System.ChangedDate] DESC" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Dashboard/Queries/Features.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Feature", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Feature' AND [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Dashboard/Queries/Product Backlog Items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Product Backlog Items", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Product Backlog Item' AND [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Dashboard/Queries/Tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tasks", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Task' ORDER BY [System.ChangedDate] DESC" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/EnableEpic.json: -------------------------------------------------------------------------------- 1 | { 2 | "backlogVisibilities": { 3 | "Microsoft.EpicCategory": true, 4 | "Microsoft.FeatureCategory": true, 5 | "Microsoft.RequirementCategory": true 6 | } 7 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Images/AccountOctopusDeploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Octopus/Images/AccountOctopusDeploy.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Images/BuildAzureDevOpsServices1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Octopus/Images/BuildAzureDevOpsServices1.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Images/OctopusDeploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Octopus/Images/OctopusDeploy.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Images/PartsUnlimited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Octopus/Images/PartsUnlimited.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/ImportSourceCode/Octopus.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://dev.azure.com/vstsdemodata/Octopus/_git/Octopus" 5 | }, 6 | "serviceEndpointId": "$Octopus-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Scrum", 3 | "users": [] 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/ServiceEndpoints/Octopus.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Octopus", 3 | "type": "OctopusEndpoint", 4 | "url": "$URL$", 5 | "authorization": { 6 | "parameters": { 7 | "apitoken": "$Apikey$" 8 | }, 9 | "scheme": "Token" 10 | } 11 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Teams/Octopus Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Teams/Team1/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Octopus/Teams/Team2/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Dashboard/Queries/All Work Items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All Work Items", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] <> '' AND [System.State] <> ''" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Dashboard/Queries/Epic.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Epics", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Epic' ORDER BY [System.ChangedDate] DESC" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Dashboard/Queries/Features.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Feature", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Feature' AND [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Dashboard/Queries/Product Backlog Items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Product Backlog Items", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Product Backlog Item' AND [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Dashboard/Queries/Tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tasks", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Task' ORDER BY [System.ChangedDate] DESC" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/ImportSourceCode/PHP.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://dev.azure.com/vstsdemodata/PHP/_git/PHP" 5 | }, 6 | "serviceEndpointId": "$php-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Scrum", 3 | "users": [] 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Teams/Team1/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Teams/Team2/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-PHP/Teams/php Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Dashboard/Queries/All Work Items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All Work Items", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] <> '' AND [System.State] <> ''" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Dashboard/Queries/Epic.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Epics", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Epic' ORDER BY [System.ChangedDate] DESC" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Dashboard/Queries/Features.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Feature", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Feature' AND [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Dashboard/Queries/Product Backlog Items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Product Backlog Items", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Product Backlog Item' AND [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Dashboard/Queries/Tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tasks", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Task' ORDER BY [System.ChangedDate] DESC" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/EnableEpic.json: -------------------------------------------------------------------------------- 1 | { 2 | "backlogVisibilities": { 3 | "Microsoft.EpicCategory": true, 4 | "Microsoft.FeatureCategory": true, 5 | "Microsoft.RequirementCategory": true 6 | } 7 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Images/build-progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Python/Images/build-progress.gif -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Images/cd-tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Python/Images/cd-tasks.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Images/ci-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Python/Images/ci-pipeline.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Images/release-output.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Python/Images/release-output.gif -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Images/release-progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Python/Images/release-progress.gif -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/ImportSourceCode/PythonDjango.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": 3 | { 4 | "gitSource": { 5 | "url": "https://dev.azure.com/vstsdemodata/Python/_git/PythonDjango" 6 | }, 7 | "serviceEndpointId": "$Python-code$", 8 | "deleteServiceEndpointAfterImportIsDone": true 9 | } 10 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Scrum", 3 | "users": [] 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Teams/Python Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Teams/Team1/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Python/Teams/Team2/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/Dashboard/Queries/Bugs.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Bugs", 3 | "wiql": "SELECT [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Bug' AND [System.State] <> 'Closed'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/EnableEpic.json: -------------------------------------------------------------------------------- 1 | { 2 | "backlogVisibilities": { 3 | "Microsoft.EpicCategory": true, 4 | "Microsoft.FeatureCategory": true, 5 | "Microsoft.RequirementCategory": true 6 | } 7 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/Images/qam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-ReleaseGates/Images/qam.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/Images/querywi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-ReleaseGates/Images/querywi.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/Images/timeout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-ReleaseGates/Images/timeout.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/ImportSourceCode/PartsUnlimited.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": 3 | { 4 | "gitSource": 5 | { 6 | "url": "https://dev.azure.com/vstsdemodata/Release%20Gates/_git/PartsUnlimited" 7 | }, 8 | "serviceEndpointId": "$PartsUnlimited-code$", 9 | "deleteServiceEndpointAfterImportIsDone": true 10 | } 11 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "users": [] 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/Teams/ReleaseGates Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/Teams/Team1/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-ReleaseGates/Teams/Team2/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/Dashboard/Queries/All Work Items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All Work Items", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] <> '' AND [System.State] <> ''" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/Dashboard/Queries/Epic.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Epics", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Epic' ORDER BY [System.ChangedDate] DESC" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/Dashboard/Queries/Features.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Feature", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Feature' AND [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/Dashboard/Queries/Product Backlog Items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Product Backlog Items", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Product Backlog Item' AND [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/Dashboard/Queries/Tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tasks", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Task' ORDER BY [System.ChangedDate] DESC" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/EnableEpic.json: -------------------------------------------------------------------------------- 1 | { 2 | "backlogVisibilities": { 3 | "Microsoft.EpicCategory": true, 4 | "Microsoft.FeatureCategory": true, 5 | "Microsoft.RequirementCategory": true 6 | } 7 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/Images/Buildsuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Selenium/Images/Buildsuccess.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/Images/dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Selenium/Images/dev.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/Images/seleniumtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Selenium/Images/seleniumtest.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/Images/testsuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Selenium/Images/testsuccess.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/ImportSourceCode/Selenium.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": 3 | { 4 | "gitSource": 5 | { 6 | "url": "https://dev.azure.com/vstsdemodata/Selenium/_git/Selenium" 7 | }, 8 | "serviceEndpointId": "$Selenium-code$", 9 | "deleteServiceEndpointAfterImportIsDone": true 10 | } 11 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Selenium/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "users": [ "ckelly109@outlook.com", "craig109@outlook.com", "nmunger109@outlook.com", "lsteel109@outlook.com"] 3 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Dashboard/Queries/All Work Items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All Work Items", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] <> '' AND [System.State] <> ''" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Dashboard/Queries/Epic.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Epics", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Epic' ORDER BY [System.ChangedDate] DESC" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Dashboard/Queries/Features.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Feature", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Feature' AND [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Dashboard/Queries/Product Backlog Items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Product Backlog Items", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Product Backlog Item' AND [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Dashboard/Queries/Tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tasks", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Task' ORDER BY [System.ChangedDate] DESC" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/EnableEpic.json: -------------------------------------------------------------------------------- 1 | { 2 | "backlogVisibilities": { 3 | "Microsoft.EpicCategory": true, 4 | "Microsoft.FeatureCategory": true, 5 | "Microsoft.RequirementCategory": true 6 | } 7 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Images/analysis_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-SonarQube/Images/analysis_report.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Images/bug_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-SonarQube/Images/bug_details.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Images/build_configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-SonarQube/Images/build_configure.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Images/build_summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-SonarQube/Images/build_summary.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/ImportSourceCode/MyShuttle.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": 3 | { 4 | "gitSource": 5 | { 6 | "url": "https://dev.azure.com/vstsdemodata/SonarQube/_git/MyShuttle" 7 | }, 8 | "serviceEndpointId": "$SonarQube-code$", 9 | "deleteServiceEndpointAfterImportIsDone": true 10 | } 11 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "users": [ "ckelly109@outlook.com", "craig109@outlook.com", "nmunger109@outlook.com", "lsteel109@outlook.com"] 3 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Teams/SonarQube Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Teams/Team1/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-SonarQube/Teams/Team2/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Terraform/Images/Terraform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Terraform/Images/Terraform.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Terraform/Images/queuebuild.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Terraform/Images/queuebuild.gif -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Terraform/Images/releasetasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Terraform/Images/releasetasks.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Terraform/Images/releasetrigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Terraform/Images/releasetrigger.gif -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Terraform/Images/webapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-Terraform/Images/webapp.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Terraform/ImportSourceCode/Terraform.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": 3 | { 4 | "gitSource": { 5 | "url": "https://dev.azure.com/vstsdemodata/Terraform/_git/Terraform" 6 | }, 7 | "serviceEndpointId": "$Terraform-code$", 8 | "deleteServiceEndpointAfterImportIsDone": true 9 | } 10 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-Terraform/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "users": [] 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/Dashboard/Queries/All Work Items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All Work Items", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] <> '' AND [System.State] <> ''" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/Dashboard/Queries/Epic.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Epics", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Epic' ORDER BY [System.ChangedDate] DESC" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/Dashboard/Queries/Features.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Feature", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Feature' AND [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/Dashboard/Queries/Product Backlog Items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Product Backlog Items", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Product Backlog Item' AND [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/Dashboard/Queries/Tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tasks", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Task' ORDER BY [System.ChangedDate] DESC" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/EnableEpic.json: -------------------------------------------------------------------------------- 1 | { 2 | "backlogVisibilities": { 3 | "Microsoft.EpicCategory": true, 4 | "Microsoft.FeatureCategory": true, 5 | "Microsoft.RequirementCategory": true 6 | } 7 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/Images/CI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-WhiteSource-Bolt/Images/CI.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/Images/WhiteSourceBolt13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-WhiteSource-Bolt/Images/WhiteSourceBolt13.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/Images/WhiteSourceBolt30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/DL-WhiteSource-Bolt/Images/WhiteSourceBolt30.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/ImportSourceCode/WebGoat.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://dev.azure.com/vstsdemodata/WhiteSource%20Bolt/_git/WhiteSource%20Bolt" 5 | }, 6 | "serviceEndpointId": "$WebGoat-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Scrum", 3 | "users": [ 4 | "josau@microsoft.com", 5 | "dahat@microsoft.com", 6 | "erehrlic@microsoft.com" 7 | ] 8 | 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/Teams/Team1/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/Teams/Team2/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/DL-WhiteSource-Bolt/Teams/WhiteSource Bolt Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/EndpointKeyConfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "keys": [ "ConnectedServiceName", "kubernetesServiceEndpoint", "dockerRegistryEndpoint", "azureSubscriptionEndpoint", "OctoConnectedServiceName", "ConnectedServiceNameARM", "deploymentGroupEndpoint", "defaultValue", "azureContainerRegistry", "connectionOverSsh", "connectedServiceNameARM" ] 3 | } 4 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/FA-IAC-migration/ImportSourceCode/GitRepository.json: -------------------------------------------------------------------------------- 1 | { 2 | "repositories": [ 3 | { 4 | "fullName": "amillerb/fta-live-devops-iac-migration-src" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/FA-IAC-migration/ImportSourceCode/IaC Migration.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://github.com/amillerb/fta-live-devops-iac-migration-src" 5 | }, 6 | "serviceEndpointId": "$GitHub_fafc3091$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/FA-IAC-migration/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "id": "adcc42ab-9882-485e-a3ed-7678f01f66bc", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/FA-IAC-migration/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/FA-IAC-migration/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "b35fbdee-8699-489c-ac8e-6aa5e10be6f8", 4 | "name": "TestTemplate Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/FA-IAC-migration/Teams/TestTemplate Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": false, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-ContosoAir/ImportSourceCode/ContosoAir-tc.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://dev.azure.com/vstsdemodata/ContosoAir/_git/ContosoAir" 5 | }, 6 | "serviceEndpointId": "$ContosoAir-tc-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-ContosoAir/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "id": "adcc42ab-9882-485e-a3ed-7678f01f66bc", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-ContosoAir/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-ContosoAir/Teams/ContosoAir-tc Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-ContosoAir/Teams/DB Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-ContosoAir/Teams/Web Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Dashboard/Queries/All Work Items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All Work Items", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from workitems where [System.TeamProject] = @project and [System.WorkItemType] <> '' and [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Dashboard/Queries/Bugs.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Bugs", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath], [System.Tags] from workitems where [System.TeamProject] = @project and [System.WorkItemType] = 'Bug' order by [System.ChangedDate] desc" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Dashboard/Queries/Feature.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Feature", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from workitems where [System.TeamProject] = @project and [System.WorkItemType] = 'Feature' and [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Dashboard/Queries/Product Backlog Items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Product Backlog Items", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Product Backlog Item' AND [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Dashboard/Queries/Tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tasks", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from workitems where [System.TeamProject] = @project and [System.WorkItemType] = 'Task' order by [System.ChangedDate] desc" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Dashboard/Queries/Test Cases.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test Cases", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from workitems where [System.TeamProject] = @project and [System.WorkItemType] = 'Test Case' and [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Dashboard/Queries/Test Plans.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test Plans", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from workitems where [System.TeamProject] = @project and [System.WorkItemType] = 'Test Plan' and [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Dashboard/Queries/Test Suites.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test Suites", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Test Suite' and [System.State] <> ''" 4 | } 5 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Images/boards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/Gen-MyShuttle/Images/boards.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Images/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/Gen-MyShuttle/Images/dashboard.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Images/loginpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/Gen-MyShuttle/Images/loginpage.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/ImportSourceCode/MyShuttle.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": 3 | { 4 | "gitSource": 5 | { 6 | "url": "https://dev.azure.com/vstsdemodata/MyShuttle/_git/MyShuttle" 7 | }, 8 | "serviceEndpointId": "$MyShuttle-code$", 9 | "deleteServiceEndpointAfterImportIsDone": true 10 | } 11 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Scrum", 3 | "id": "6b724908-ef14-45cf-84f8-768b5384da45", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Teams/MyShuttle Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Teams/Team1/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-MyShuttle/Teams/Team2/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-PartsUnlimited/Dashboard/Queries/All Items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All Items_WI", 3 | "wiql": "SELECT [System.id],[System.WorkItemtype],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType]<>'' AND [System.State]<>''" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-PartsUnlimited/Dashboard/Queries/Critical Bugs.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Critical Bugs", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Bug' AND [System.State] <> 'Done' AND [System.BoardLane] = 'Expedite'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-PartsUnlimited/Dashboard/Queries/Test Case-Readiness.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test Case-Readiness", 3 | "wiql": "SELECT [System.id],[System.WorkItemtype],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Test Case' AND [System.State] <> '[Any]'" 4 | 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-PartsUnlimited/Dashboard/Queries/User Stories.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "User Stories", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Product Backlog Item' AND [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-PartsUnlimited/ImportSourceCode/PartsUnlimited.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://dev.azure.com/vstsdemodata/PartsUnlimited/_git/PartsUnlimited" 5 | }, 6 | "serviceEndpointId": "$PartsUnlimited-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-PartsUnlimited/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Scrum", 3 | "id": "6b724908-ef14-45cf-84f8-768b5384da45", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-PartsUnlimited/PullRequests/PullRequest1.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Fixed Product Search Functionality", 3 | "description": "Please review", 4 | "sourceRefName": "refs/heads/FixSearchFunctionality", 5 | "targetRefName": "refs/heads/master", 6 | "reviewers": [ 7 | { 8 | "id": "$reviewer$" 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-PartsUnlimited/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-PartsUnlimited/Teams/PUL-DB/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-PartsUnlimited/Teams/PUL/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-PartsUnlimited/Teams/PartsUnlimited-tc Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-Tailwind Traders/ImportSourceCode/Documents.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://dev.azure.com/vstsdemodata/TailwindTraders/_git/Documents" 5 | }, 6 | "serviceEndpointId": "$Documents-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-Tailwind Traders/ImportSourceCode/TailwindTraders.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://dev.azure.com/vstsdemodata/TailwindTraders/_git/TailwindTraders" 5 | }, 6 | "serviceEndpointId": "$TailwindTraders-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-Tailwind Traders/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "id": "adcc42ab-9882-485e-a3ed-7678f01f66bc", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-Tailwind Traders/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-Tailwind Traders/Teams/GHAzDo-E2E Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-Tailwind Traders/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "f8b4a289-7e13-4560-9ca6-e61ef3f481eb", 4 | "name": "GHAzDo-E2E Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/App Development Team/Queries/All Bugs.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All Bugs", 3 | "wiql": "SELECT [System.Id],[System.WorkItemType],[System.Title],[System.AssignedTo],[System.State],[System.Tags] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] = 'Bug' AND [System.AreaPath] = '$projectId$\\App Development Team'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/Active Bugs.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Active Bugs", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Bug' and [System.State] = 'Active'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/Active Epic.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Active Epic", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Epic' and [System.State] = 'Active'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/Active Feature.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Active Feature", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Feature' and [System.State] = 'Active'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/Active Stories.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Active Stories", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'User Story' and [System.State] = 'Active'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/Active Tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Active Tasks", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Task' and [System.State] = 'Active'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/All Bugs.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All Bugs", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Bug' and [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/All Epics.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All Epics", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Epic' and [System.AreaPath] = '$projectId$\\App Development Team'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/All Features.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All Features", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Feature' and [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/All Stories.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All Stories", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'User Story' and [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/All Tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All Tasks", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Task' and [System.AreaPath] = '$projectId$\\App Development Team'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/All workitems.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "All workitems", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from Workitems where [System.TeamProject] = @project and [System.WorkItemType] <> '' and [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/Assigned to me.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Assigned to me", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.AssignedTo] = @me order by [System.ChangedDate] desc" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/Closed Bugs.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Closed Bugs", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Bug' and [System.State] = 'Closed'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/Closed Epic.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Closed Epic", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Epic' and [System.State] = 'Closed'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/Closed Feature.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Closed Feature", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Feature' and [System.State] = 'Closed'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/Closed Stories.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Closed Stories", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'User Story' and [System.State] = 'New'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/Closed Tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Closed Tasks", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Task' and [System.State] = 'Closed'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/Epics.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Epics", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Epic' and [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/Features.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Features", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Feature' and [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/Followed work items.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Followed work items", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath] from WorkItems where [System.Id] in (@Follows)" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/New Bugs.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "New Bugs", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Bug' and [System.State] = 'New'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/New Epic.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "New Epic", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Epic' and [System.State] = 'New'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/New Feature.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "New Feature", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Feature' and [System.State] = 'New'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/New Stories.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "New Stories", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'User Story' and [System.State] = 'New'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/New Tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "New Tasks", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Task' and [System.State] = 'New'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/Resolved Bugs.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Resolved Bugs", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Bug' and [System.State] = 'Resolved'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/Tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tasks", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Task' and [System.State] <> '' and [System.AreaPath] = '$projectId$\\DBA Team'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/Test Cases.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test Cases", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Test Case' and [System.AreaPath] = '$projectId$\\App Development Team'" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Dashboard/Queries/User Stories.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "User Stories", 3 | "wiql": "select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'User Story' and [System.State] <> ''" 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/ImportSourceCode/eShopOnWeb.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://dev.azure.com/vstsdemodata/eShopOnWeb/_git/eShopOnWeb" 5 | }, 6 | "serviceEndpointId": "$eShopOnWeb-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Agile", 3 | "id": "adcc42ab-9882-485e-a3ed-7678f01f66bc", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Teams/App Development Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Teams/DBA Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Teams/eShoponweb Team/IncludeSubAreas.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "eshop-demo2", 3 | "values": [ 4 | { 5 | "value": "eshop-demo2", 6 | "includeChildren": false 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/Teams/eShoponweb Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asTasks", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": true, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/Gen-eShopOnWeb/TestPlans/TestPlan.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "$project$_TestPlan1", 3 | "iteration": "$project$\\Iteration 2" 4 | } 5 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Create-Build-Pipeline/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [ 3 | { 4 | "name": "Sprint 1", 5 | "structureType": "iteration", 6 | "hasChildren": false 7 | } 8 | ], 9 | "name": "Space Game - web", 10 | "structureType": "iteration", 11 | "hasChildren": true 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Create-Build-Pipeline/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "users": [] 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Create-Build-Pipeline/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Create-Build-Pipeline/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "83f13779-2223-4fe8-b260-8c572d1fb0f3", 4 | "name": "Space Game - web Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Deploy-Docker-Template/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [ 3 | { 4 | "name": "Sprint 1", 5 | "structureType": "iteration", 6 | "hasChildren": false 7 | } 8 | ], 9 | "name": "Space Game - web - Docker", 10 | "structureType": "iteration", 11 | "hasChildren": true 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Deploy-Docker-Template/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "id": "b8a3a935-7e91-48b8-a94c-606d37c3e9f2", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Deploy-Docker-Template/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Deploy-Docker-Template/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "d1b736ce-eb0e-40d2-aedd-907dbab4bb95", 4 | "name": "Space Game - web - Docker Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Deploy-Kubernetes-Template/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [ 3 | { 4 | "name": "Sprint 1", 5 | "structureType": "iteration", 6 | "hasChildren": false 7 | } 8 | ], 9 | "name": "Space Game - web - Docker", 10 | "structureType": "iteration", 11 | "hasChildren": true 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Deploy-Kubernetes-Template/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "id": "b8a3a935-7e91-48b8-a94c-606d37c3e9f2", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Deploy-Kubernetes-Template/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Deploy-Kubernetes-Template/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "d1b736ce-eb0e-40d2-aedd-907dbab4bb95", 4 | "name": "Space Game - web - Docker Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Host-Build-Agent/ImportSourceCode/tailspin-spacegame-web.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://github.com/jamcneil/mslearn-tailspin-spacegame-web" 5 | }, 6 | "serviceEndpointId": "$tailspin-spacegame-web-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Host-Build-Agent/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [ 3 | { 4 | "name": "Sprint 1", 5 | "structureType": "iteration", 6 | "hasChildren": false 7 | } 8 | ], 9 | "name": "Space Game - web", 10 | "structureType": "iteration", 11 | "hasChildren": true 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Host-Build-Agent/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "users": [] 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Host-Build-Agent/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Host-Build-Agent/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "83f13779-2223-4fe8-b260-8c572d1fb0f3", 4 | "name": "Space Game - web Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Implement-Code-Workflow/ImportSourceCode/tailspin-spacegame-web.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://github.com/jamcneil/mslearn-tailspin-spacegame-web" 5 | }, 6 | "serviceEndpointId": "$tailspin-spacegame-web-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Implement-Code-Workflow/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [ 3 | { 4 | "name": "Sprint 1", 5 | "structureType": "iteration", 6 | "hasChildren": false 7 | } 8 | ], 9 | "name": "Space Game - web", 10 | "structureType": "iteration", 11 | "hasChildren": true 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Implement-Code-Workflow/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "users": [] 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Implement-Code-Workflow/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Implement-Code-Workflow/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "83f13779-2223-4fe8-b260-8c572d1fb0f3", 4 | "name": "Space Game - web Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Manage-Build-Dependencies/ImportSourceCode/tailspin-spacegame-web.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://github.com/jamcneil/mslearn-tailspin-spacegame-web" 5 | }, 6 | "serviceEndpointId": "$tailspin-spacegame-web-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Manage-Build-Dependencies/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [ 3 | { 4 | "name": "Sprint 1", 5 | "structureType": "iteration", 6 | "hasChildren": false 7 | } 8 | ], 9 | "name": "Space Game - web", 10 | "structureType": "iteration", 11 | "hasChildren": true 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Manage-Build-Dependencies/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "users": [] 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Manage-Build-Dependencies/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Manage-Build-Dependencies/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "83f13779-2223-4fe8-b260-8c572d1fb0f3", 4 | "name": "Space Game - web Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Manage-multiple-environments-azure-pipelines/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [ 3 | { 4 | "name": "Sprint 1", 5 | "structureType": "iteration", 6 | "hasChildren": false 7 | } 8 | ], 9 | "name": "toy-website-environments", 10 | "structureType": "iteration", 11 | "hasChildren": true 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Manage-multiple-environments-azure-pipelines/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "id": "b8a3a935-7e91-48b8-a94c-606d37c3e9f2", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Manage-multiple-environments-azure-pipelines/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Review-azure-infrastructure-changes/ImportSourceCode/toy-website-review.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://github.com/MicrosoftDocs/mslearn-review-azure-infrastructure-changes-using-bicep-pull-requests.git" 5 | }, 6 | "serviceEndpointId": "", 7 | "deleteServiceEndpointAfterImportIsDone": false 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Review-azure-infrastructure-changes/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [ 3 | { 4 | "name": "Sprint 1", 5 | "structureType": "iteration", 6 | "hasChildren": false 7 | } 8 | ], 9 | "name": "toy-website-review", 10 | "structureType": "iteration", 11 | "hasChildren": true 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Review-azure-infrastructure-changes/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "id": "b8a3a935-7e91-48b8-a94c-606d37c3e9f2", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Review-azure-infrastructure-changes/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Review-azure-infrastructure-changes/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "bd392432-963a-494f-853e-8890e13c007d", 4 | "name": "toy-website-review Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Run-Quality-Tests/ImportSourceCode/tailspin-spacegame-web.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://github.com/jamcneil/mslearn-tailspin-spacegame-web" 5 | }, 6 | "serviceEndpointId": "$tailspin-spacegame-web-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Run-Quality-Tests/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [ 3 | { 4 | "name": "Sprint 1", 5 | "structureType": "iteration", 6 | "hasChildren": false 7 | } 8 | ], 9 | "name": "Space Game - web", 10 | "structureType": "iteration", 11 | "hasChildren": true 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Run-Quality-Tests/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "users": [] 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Run-Quality-Tests/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Run-Quality-Tests/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "83f13779-2223-4fe8-b260-8c572d1fb0f3", 4 | "name": "Space Game - web Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Scan-Open-Source/ImportSourceCode/tailspin-spacegame-web.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://github.com/jamcneil/mslearn-tailspin-spacegame-web" 5 | }, 6 | "serviceEndpointId": "$tailspin-spacegame-web-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Scan-Open-Source/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [ 3 | { 4 | "name": "Sprint 1", 5 | "structureType": "iteration", 6 | "hasChildren": false 7 | } 8 | ], 9 | "name": "Space Game - web", 10 | "structureType": "iteration", 11 | "hasChildren": true 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Scan-Open-Source/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "users": [] 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Scan-Open-Source/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Scan-Open-Source/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "83f13779-2223-4fe8-b260-8c572d1fb0f3", 4 | "name": "Space Game - web Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Scan-for-Vulnerabilities/ImportSourceCode/tailspin-spacegame-web.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://github.com/jamcneil/mslearn-tailspin-spacegame-web" 5 | }, 6 | "serviceEndpointId": "$tailspin-spacegame-web-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Scan-for-Vulnerabilities/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [ 3 | { 4 | "name": "Sprint 1", 5 | "structureType": "iteration", 6 | "hasChildren": false 7 | } 8 | ], 9 | "name": "Space Game - web", 10 | "structureType": "iteration", 11 | "hasChildren": true 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Scan-for-Vulnerabilities/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "users": [] 4 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Scan-for-Vulnerabilities/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Scan-for-Vulnerabilities/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "83f13779-2223-4fe8-b260-8c572d1fb0f3", 4 | "name": "Space Game - web Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-AzureFunctions/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [ 3 | { 4 | "name": "Sprint 1", 5 | "structureType": "iteration", 6 | "hasChildren": false 7 | } 8 | ], 9 | "name": "Space Game Azure Functions", 10 | "structureType": "iteration", 11 | "hasChildren": true 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-AzureFunctions/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "id": "b8a3a935-7e91-48b8-a94c-606d37c3e9f2", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-AzureFunctions/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-AzureFunctions/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "6aa3d9b6-3b8a-421c-917d-e7bd0c519ecf", 4 | "name": "Space Game Azure Functions Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-DeliveryPlans/ImportSourceCode/tailspin-spacegame-web.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://github.com/jamcneil/mslearn-tailspin-spacegame-web" 5 | }, 6 | "serviceEndpointId": "$tailspin-spacegame-web-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-DeliveryPlans/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Scrum", 3 | "id": "6b724908-ef14-45cf-84f8-768b5384da45", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-DeliveryPlans/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game - web - Delivery plans Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game Delivery Plans Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game Engine Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game Web Team/TeamSetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugsBehavior": "asRequirements", 3 | "backlogVisibilities": { 4 | "Microsoft.EpicCategory": false, 5 | "Microsoft.FeatureCategory": true, 6 | "Microsoft.RequirementCategory": true 7 | } 8 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-DeployDatabase/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [ 3 | { 4 | "name": "Sprint 1", 5 | "structureType": "iteration", 6 | "hasChildren": false 7 | } 8 | ], 9 | "name": "Space Game - web - Deploy database", 10 | "structureType": "iteration", 11 | "hasChildren": true 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-DeployDatabase/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "id": "b8a3a935-7e91-48b8-a94c-606d37c3e9f2", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-DeployDatabase/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-DeployDatabase/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "49b91585-b74c-40cd-b23a-3d45de072c5b", 4 | "name": "Space Game - web - Deploy database Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-DeploymentPatterns/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [ 3 | { 4 | "name": "Sprint 1", 5 | "structureType": "iteration", 6 | "hasChildren": false 7 | } 8 | ], 9 | "name": "Space Game - web - Deployment patterns", 10 | "structureType": "iteration", 11 | "hasChildren": true 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-DeploymentPatterns/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "id": "b8a3a935-7e91-48b8-a94c-606d37c3e9f2", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-DeploymentPatterns/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-DeploymentPatterns/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "49b91585-b74c-40cd-b23a-3d45de072c5b", 4 | "name": "Space Game - web - Deployment patterns Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-FunctionalTests/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [ 3 | { 4 | "name": "Sprint 1", 5 | "structureType": "iteration", 6 | "hasChildren": false 7 | } 8 | ], 9 | "name": "Space Game - web - Functional tests", 10 | "structureType": "iteration", 11 | "hasChildren": true 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-FunctionalTests/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "id": "b8a3a935-7e91-48b8-a94c-606d37c3e9f2", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-FunctionalTests/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-FunctionalTests/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "49b91585-b74c-40cd-b23a-3d45de072c5b", 4 | "name": "Space Game - web - Functional tests Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-Multi-stage/ImportSourceCode/tailspin-spacegame-web-deploy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-deploy" 5 | }, 6 | "serviceEndpointId": "$tailspin-spacegame-web-deploy-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-Multi-stage/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [ 3 | { 4 | "name": "Sprint 1", 5 | "structureType": "iteration", 6 | "hasChildren": false 7 | } 8 | ], 9 | "name": "Space Game - web - Release workflow", 10 | "structureType": "iteration", 11 | "hasChildren": true 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-Multi-stage/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "id": "b8a3a935-7e91-48b8-a94c-606d37c3e9f2", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-Multi-stage/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-Multi-stage/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "49b91585-b74c-40cd-b23a-3d45de072c5b", 4 | "name": "Space Game - web - Release workflow Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-Non-functionalTests/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [ 3 | { 4 | "name": "Sprint 1", 5 | "structureType": "iteration", 6 | "hasChildren": false 7 | } 8 | ], 9 | "name": "Space Game - web - Non-functional tests", 10 | "structureType": "iteration", 11 | "hasChildren": true 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-Non-functionalTests/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "id": "b8a3a935-7e91-48b8-a94c-606d37c3e9f2", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-Non-functionalTests/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-Non-functionalTests/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "49b91585-b74c-40cd-b23a-3d45de072c5b", 4 | "name": "Space Game - web - Non-functional tests Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-ProvisionDB/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [ 3 | { 4 | "name": "Sprint 1", 5 | "structureType": "iteration", 6 | "hasChildren": false 7 | } 8 | ], 9 | "name": "Space Game - web - ProvisionDB", 10 | "structureType": "iteration", 11 | "hasChildren": true 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-ProvisionDB/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "id": "b8a3a935-7e91-48b8-a94c-606d37c3e9f2", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-ProvisionDB/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-ProvisionDB/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "410d6456-70fc-4cb9-878d-57cc3433a5d1", 4 | "name": "Space Game - web - ProvisionDB Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-Release/ImportSourceCode/tailspin-spacegame-web-deploy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-deploy" 5 | }, 6 | "serviceEndpointId": "$tailspin-spacegame-web-deploy-code$", 7 | "deleteServiceEndpointAfterImportIsDone": true 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-Release/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [ 3 | { 4 | "name": "Sprint 1", 5 | "structureType": "iteration", 6 | "hasChildren": false 7 | } 8 | ], 9 | "name": "Space Game - web - Release", 10 | "structureType": "iteration", 11 | "hasChildren": true 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-Release/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "id": "b8a3a935-7e91-48b8-a94c-606d37c3e9f2", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-Release/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-Release/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "49b91585-b74c-40cd-b23a-3d45de072c5b", 4 | "name": "Space Game - web - Release Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-Terraform/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [ 3 | { 4 | "name": "Sprint 1", 5 | "structureType": "iteration", 6 | "hasChildren": false 7 | } 8 | ], 9 | "name": "Space Game - web - Terraform", 10 | "structureType": "iteration", 11 | "hasChildren": true 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-Terraform/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "id": "b8a3a935-7e91-48b8-a94c-606d37c3e9f2", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-Terraform/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-SpaceGame-web-Terraform/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "57e1fe8d-1a85-47ce-ab5d-17863a1d165f", 4 | "name": "Space Game - web - Terraform Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Test-bicep/ImportSourceCode/toy-website-test.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://github.com/MicrosoftDocs/mslearn-test-bicep-code-using-azure-pipelines.git" 5 | }, 6 | "serviceEndpointId": "", 7 | "deleteServiceEndpointAfterImportIsDone": false 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Test-bicep/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "id": "b8a3a935-7e91-48b8-a94c-606d37c3e9f2", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Toy-reusable/ImportSourceCode/toy-reusable.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | "gitSource": { 4 | "url": "https://github.com/MicrosoftDocs/mslearn-publish-reusable-bicep-code-using-azure-pipelines.git" 5 | }, 6 | "serviceEndpointId": "", 7 | "deleteServiceEndpointAfterImportIsDone": false 8 | } 9 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Toy-reusable/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [ 3 | { 4 | "name": "Sprint 1", 5 | "structureType": "iteration", 6 | "hasChildren": false 7 | } 8 | ], 9 | "name": "toy-reusable", 10 | "structureType": "iteration", 11 | "hasChildren": true 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Toy-reusable/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "id": "b8a3a935-7e91-48b8-a94c-606d37c3e9f2", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Toy-reusable/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-Toy-reusable/Teams/Teams.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "92b98ca1-adcb-454c-a6d3-f55708b1a66f", 4 | "name": "toy-reusable Team", 5 | "description": "The default project team.", 6 | "isDefault": "true" 7 | } 8 | ] -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-manage-end-end-deployment-scenarios/Iterations.json: -------------------------------------------------------------------------------- 1 | { 2 | "children": [ 3 | { 4 | "name": "Sprint 1", 5 | "structureType": "iteration", 6 | "hasChildren": false 7 | } 8 | ], 9 | "name": "toy-website-end-to-end", 10 | "structureType": "iteration", 11 | "hasChildren": true 12 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-manage-end-end-deployment-scenarios/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "Basic", 3 | "id": "b8a3a935-7e91-48b8-a94c-606d37c3e9f2", 4 | "users": [] 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MSL-manage-end-end-deployment-scenarios/TeamArea.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultValue": "$ProjectName$\\$AreaName$", 3 | "values": [ 4 | { 5 | "value": "$ProjectName$\\$AreaName$", 6 | "includeChildren": false 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/MovePages.json: -------------------------------------------------------------------------------- 1 | { 2 | "path": "$ChildFile$", 3 | "newPath": "$ParentFile$/$ChildFile$", 4 | "newOrder": 0 5 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/SampleContent.json: -------------------------------------------------------------------------------- 1 | { 2 | "content": "$Content$" 3 | } -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/Ansible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/Ansible.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/AzureCommunity/Azure Sentinel DevOps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/AzureCommunity/Azure Sentinel DevOps.jpg -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/AzureCommunity/AzureGov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/AzureCommunity/AzureGov.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/AzureCommunity/ModernDataAnalytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/AzureCommunity/ModernDataAnalytics.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/AzureCommunity/ModernDataWarehouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/AzureCommunity/ModernDataWarehouse.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/AzureCommunity/NIST 800-171.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/AzureCommunity/NIST 800-171.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/AzureCommunity/RecommederIcon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/AzureCommunity/RecommederIcon.PNG -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/AzureCommunity/SapOnAzureLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/AzureCommunity/SapOnAzureLogo.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/AzureCommunity/Secureresearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/AzureCommunity/Secureresearch.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/AzureCommunity/iac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/AzureCommunity/iac.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/AzureCommunity/modiot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/AzureCommunity/modiot.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/AzureCommunity/unifiedgov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/AzureCommunity/unifiedgov.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/AzureDevOps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/AzureDevOps.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/AzureFunction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/AzureFunction.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/CloudAdoptionFramework.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/CloudAdoptionFramework.jpg -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/CodeFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/CodeFile.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/ContosAir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/ContosAir.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/Docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/Docker.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/Dynatrace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/Dynatrace.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/GitHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/GitHub.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/MachineLearning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/MachineLearning.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/MyHealthClinic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/MyHealthClinic.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/MyShuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/MyShuttle.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/PHP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/PHP.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/Partunlimited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/Partunlimited.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/Python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/Python.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/SmartHotel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/SmartHotel.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/SonarQube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/SonarQube.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/TailwindTraders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/TailwindTraders.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/Terraform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/Terraform.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/WhiteSourceBolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/WhiteSourceBolt.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/devopsdojo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/devopsdojo.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/eShop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/eShop.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/key-vault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/key-vault.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/kubernetes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/kubernetes.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/launchdarkly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/launchdarkly.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/mslearn/bicep-publish-code-pipelines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/mslearn/bicep-publish-code-pipelines.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/mslearn/create-a-build-pipeline-azure-pipelines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/mslearn/create-a-build-pipeline-azure-pipelines.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/mslearn/host-your-own-build-server-in-your-build-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/mslearn/host-your-own-build-server-in-your-build-pipeline.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/mslearn/implement-a-code-workflow-in-your-build-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/mslearn/implement-a-code-workflow-in-your-build-pipeline.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/mslearn/manage-dependencies-in-your-build-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/mslearn/manage-dependencies-in-your-build-pipeline.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/mslearn/manage-security-and-compliance-in-your-build-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/mslearn/manage-security-and-compliance-in-your-build-pipeline.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/mslearn/review-azure-infrastructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/mslearn/review-azure-infrastructure.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/mslearn/run-quality-tests-when-your-application-builds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/mslearn/run-quality-tests-when-your-application-builds.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/mslearn/scan-code-for-vulnerabilities-in-your-build-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/mslearn/scan-code-for-vulnerabilities-in-your-build-pipeline.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/octopus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/octopus.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/policy-org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/policy-org.png -------------------------------------------------------------------------------- /src/ADOGenerator/Templates/TemplateImages/selenium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AzDevOpsDemoGenerator/f5802c5769c21d29b1fdf48d0f0d8c0ee25be017/src/ADOGenerator/Templates/TemplateImages/selenium.png -------------------------------------------------------------------------------- /src/API/Class1.cs: -------------------------------------------------------------------------------- 1 | namespace API 2 | { 3 | public class Class1 4 | { 5 | 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/API/JSON/CreateTeam.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": {string}, 3 | "description": {string} 4 | } -------------------------------------------------------------------------------- /src/API/JSON/CreateTeamProject.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "FabrikamTravel", 3 | "description": "Frabrikam travel app for Windows Phone", 4 | "capabilities": { 5 | "versioncontrol": { 6 | "sourceControlType": "Git" 7 | }, 8 | "processTemplate": { 9 | "templateTypeId": "6b724908-ef14-45cf-84f8-768b5384da45" 10 | } 11 | } -------------------------------------------------------------------------------- /src/API/JSON/GetRepository.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": 3 | { 4 | "gitSource": 5 | { 6 | "url": "https://github.com/srinudhulipalla/NotepadPlus.git" 7 | }, 8 | "serviceEndpointId": "", 9 | "deleteServiceEndpointAfterImportIsDone": true 10 | } 11 | } -------------------------------------------------------------------------------- /src/API/Viewmodel/BaseViewModel.cs: -------------------------------------------------------------------------------- 1 | using System.Net; 2 | 3 | namespace RestAPI.Viewmodel 4 | { 5 | public class BaseViewModel 6 | { 7 | public HttpStatusCode HttpStatusCode { get; set; } 8 | public string Message { get; set; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/API/Viewmodel/Extractor/KeyConfig.cs: -------------------------------------------------------------------------------- 1 | namespace RestAPI.Viewmodel.Extractor 2 | { 3 | public class KeyConfig 4 | { 5 | public class Keys 6 | { 7 | public IList keys { get; set; } 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/API/Viewmodel/QueriesAndWidgets/QueryResponse.cs: -------------------------------------------------------------------------------- 1 | namespace RestAPI.Viewmodel.QueriesAndWidgets 2 | { 3 | public class QueryResponse 4 | { 5 | public string id { get; set; } 6 | public string name { get; set; } 7 | } 8 | } 9 | --------------------------------------------------------------------------------